diff --git a/eng/mgmt/mgmtmetadata/keyvault_resource-manager.txt b/eng/mgmt/mgmtmetadata/keyvault_resource-manager.txt new file mode 100644 index 000000000000..417f9ba83d67 --- /dev/null +++ b/eng/mgmt/mgmtmetadata/keyvault_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: 2.0.4413 +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/keyvault/resource-manager/readme.md --csharp --version=2.0.4413 --reflect-api-versions --csharp.output-folder=C:\Users\yeliu\isra-fel\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.Management.KeyVault\src\Generated +2020-03-24 07:45:59 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: c9a1ed48c35572cf59cb5030e678a9d614684a7f +AutoRest information +Requested version: 2.0.4413 +Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/AzSdk.RP.props b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/AzSdk.RP.props index cc8b7b83d87f..54bffcb3f9f6 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/AzSdk.RP.props +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/AzSdk.RP.props @@ -1,7 +1,7 @@ - KeyVault_2018-02-14;KeyVaultManagementClient_2018-02-14; + KeyVault_2019-09-01;KeyVaultManagementClient_2019-09-01; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IKeyVaultManagementClient.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IKeyVaultManagementClient.cs index b1629f6a0bd3..c52d34e300bc 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IKeyVaultManagementClient.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IKeyVaultManagementClient.cs @@ -77,6 +77,16 @@ public partial interface IKeyVaultManagementClient : System.IDisposable /// IVaultsOperations Vaults { get; } + /// + /// Gets the IPrivateEndpointConnectionsOperations. + /// + IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; } + + /// + /// Gets the IPrivateLinkResourcesOperations. + /// + IPrivateLinkResourcesOperations PrivateLinkResources { get; } + /// /// Gets the IOperations. /// diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IPrivateEndpointConnectionsOperations.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IPrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..d71345f8e491 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IPrivateEndpointConnectionsOperations.cs @@ -0,0 +1,150 @@ +// +// 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.KeyVault +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + public partial interface IPrivateEndpointConnectionsOperations + { + /// + /// Gets the specified private endpoint connection associated with the + /// key vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key + /// vault. + /// + /// + /// 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> GetWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the specified private endpoint connection associated with + /// the key vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key + /// vault. + /// + /// + /// The intended state of private endpoint connection. + /// + /// + /// 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> PutWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified private endpoint connection associated with + /// the key vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key + /// vault. + /// + /// + /// 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> DeleteWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes the specified private endpoint connection associated with + /// the key vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key + /// vault. + /// + /// + /// 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> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IPrivateLinkResourcesOperations.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IPrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..eb4832cf4a72 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/IPrivateLinkResourcesOperations.cs @@ -0,0 +1,52 @@ +// +// 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.KeyVault +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateLinkResourcesOperations operations. + /// + public partial interface IPrivateLinkResourcesOperations + { + /// + /// Gets the private link resources supported for the key vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// 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> ListByVaultWithHttpMessagesAsync(string resourceGroupName, string vaultName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/KeyVaultManagementClient.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/KeyVaultManagementClient.cs index 30be6cdeac29..6939f9756371 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/KeyVaultManagementClient.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/KeyVaultManagementClient.cs @@ -82,6 +82,16 @@ public partial class KeyVaultManagementClient : ServiceClient public virtual IVaultsOperations Vaults { get; private set; } + /// + /// Gets the IPrivateEndpointConnectionsOperations. + /// + public virtual IPrivateEndpointConnectionsOperations PrivateEndpointConnections { get; private set; } + + /// + /// Gets the IPrivateLinkResourcesOperations. + /// + public virtual IPrivateLinkResourcesOperations PrivateLinkResources { get; private set; } + /// /// Gets the IOperations. /// @@ -329,9 +339,11 @@ public KeyVaultManagementClient(System.Uri baseUri, ServiceClientCredentials cre private void Initialize() { Vaults = new VaultsOperations(this); + PrivateEndpointConnections = new PrivateEndpointConnectionsOperations(this); + PrivateLinkResources = new PrivateLinkResourcesOperations(this); Operations = new Operations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2018-02-14"; + ApiVersion = "2019-09-01"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true; diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpoint.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpoint.cs new file mode 100644 index 000000000000..0f1f9dd69ef2 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpoint.cs @@ -0,0 +1,52 @@ +// +// 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.KeyVault.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Private endpoint object properties. + /// + public partial class PrivateEndpoint + { + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + public PrivateEndpoint() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpoint class. + /// + /// Full identifier of the private endpoint + /// resource. + public PrivateEndpoint(string id = default(string)) + { + Id = id; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets full identifier of the private endpoint resource. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnection.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnection.cs new file mode 100644 index 000000000000..ba2311ec14ca --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnection.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.Management.KeyVault.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Private endpoint connection resource. + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateEndpointConnection : IResource + { + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + public PrivateEndpointConnection() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpointConnection class. + /// + /// Properties of the private endpoint + /// object. + /// Approval state of + /// the private link connection. + /// Provisioning state of the private + /// endpoint connection. Possible values include: 'Succeeded', + /// 'Creating', 'Updating', 'Deleting', 'Failed', + /// 'Disconnected' + public PrivateEndpointConnection(PrivateEndpoint privateEndpoint = default(PrivateEndpoint), PrivateLinkServiceConnectionState privateLinkServiceConnectionState = default(PrivateLinkServiceConnectionState), string provisioningState = default(string)) + { + PrivateEndpoint = privateEndpoint; + PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets properties of the private endpoint object. + /// + [JsonProperty(PropertyName = "properties.privateEndpoint")] + public PrivateEndpoint PrivateEndpoint { get; set; } + + /// + /// Gets or sets approval state of the private link connection. + /// + [JsonProperty(PropertyName = "properties.privateLinkServiceConnectionState")] + public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState { get; set; } + + /// + /// Gets or sets provisioning state of the private endpoint connection. + /// Possible values include: 'Succeeded', 'Creating', 'Updating', + /// 'Deleting', 'Failed', 'Disconnected' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionItem.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionItem.cs new file mode 100644 index 000000000000..fc159b9dc2af --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionItem.cs @@ -0,0 +1,79 @@ +// +// 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.KeyVault.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Linq; + + /// + /// Private endpoint connection item. + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateEndpointConnectionItem + { + /// + /// Initializes a new instance of the PrivateEndpointConnectionItem + /// class. + /// + public PrivateEndpointConnectionItem() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateEndpointConnectionItem + /// class. + /// + /// Properties of the private endpoint + /// object. + /// Approval state of + /// the private link connection. + /// Provisioning state of the private + /// endpoint connection. Possible values include: 'Succeeded', + /// 'Creating', 'Updating', 'Deleting', 'Failed', + /// 'Disconnected' + public PrivateEndpointConnectionItem(PrivateEndpoint privateEndpoint = default(PrivateEndpoint), PrivateLinkServiceConnectionState privateLinkServiceConnectionState = default(PrivateLinkServiceConnectionState), string provisioningState = default(string)) + { + PrivateEndpoint = privateEndpoint; + PrivateLinkServiceConnectionState = privateLinkServiceConnectionState; + ProvisioningState = provisioningState; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets properties of the private endpoint object. + /// + [JsonProperty(PropertyName = "properties.privateEndpoint")] + public PrivateEndpoint PrivateEndpoint { get; set; } + + /// + /// Gets or sets approval state of the private link connection. + /// + [JsonProperty(PropertyName = "properties.privateLinkServiceConnectionState")] + public PrivateLinkServiceConnectionState PrivateLinkServiceConnectionState { get; set; } + + /// + /// Gets or sets provisioning state of the private endpoint connection. + /// Possible values include: 'Succeeded', 'Creating', 'Updating', + /// 'Deleting', 'Failed', 'Disconnected' + /// + [JsonProperty(PropertyName = "properties.provisioningState")] + public string ProvisioningState { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs new file mode 100644 index 000000000000..8cc99369303e --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionProvisioningState.cs @@ -0,0 +1,26 @@ +// +// 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.KeyVault.Models +{ + + /// + /// Defines values for PrivateEndpointConnectionProvisioningState. + /// + public static class PrivateEndpointConnectionProvisioningState + { + public const string Succeeded = "Succeeded"; + public const string Creating = "Creating"; + public const string Updating = "Updating"; + public const string Deleting = "Deleting"; + public const string Failed = "Failed"; + public const string Disconnected = "Disconnected"; + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionsDeleteHeaders.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionsDeleteHeaders.cs new file mode 100644 index 000000000000..787b92696fd1 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionsDeleteHeaders.cs @@ -0,0 +1,64 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.KeyVault.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for Delete operation. + /// + public partial class PrivateEndpointConnectionsDeleteHeaders + { + /// + /// Initializes a new instance of the + /// PrivateEndpointConnectionsDeleteHeaders class. + /// + public PrivateEndpointConnectionsDeleteHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// PrivateEndpointConnectionsDeleteHeaders class. + /// + /// The recommended number of seconds to wait + /// before calling the URI specified in the location header. + /// The URI to poll for completion + /// status. + public PrivateEndpointConnectionsDeleteHeaders(int? retryAfter = default(int?), string location = default(string)) + { + RetryAfter = retryAfter; + Location = location; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the recommended number of seconds to wait before + /// calling the URI specified in the location header. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + /// + /// Gets or sets the URI to poll for completion status. + /// + [JsonProperty(PropertyName = "Location")] + public string Location { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionsPutHeaders.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionsPutHeaders.cs new file mode 100644 index 000000000000..0259358958fe --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointConnectionsPutHeaders.cs @@ -0,0 +1,70 @@ +// +// 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.KeyVault.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Defines headers for Put operation. + /// + public partial class PrivateEndpointConnectionsPutHeaders + { + /// + /// Initializes a new instance of the + /// PrivateEndpointConnectionsPutHeaders class. + /// + public PrivateEndpointConnectionsPutHeaders() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// PrivateEndpointConnectionsPutHeaders class. + /// + /// (specified only if operation does not + /// finish synchronously) The recommended number of seconds to wait + /// before calling the URI specified in Azure-AsyncOperation. + /// (specified only if operation does + /// not finish synchronously) The URI to poll for completion status. + /// The response of this URI may be synchronous or + /// asynchronous. + public PrivateEndpointConnectionsPutHeaders(int? retryAfter = default(int?), string azureAsyncOperation = default(string)) + { + RetryAfter = retryAfter; + AzureAsyncOperation = azureAsyncOperation; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets (specified only if operation does not finish + /// synchronously) The recommended number of seconds to wait before + /// calling the URI specified in Azure-AsyncOperation. + /// + [JsonProperty(PropertyName = "Retry-After")] + public int? RetryAfter { get; set; } + + /// + /// Gets or sets (specified only if operation does not finish + /// synchronously) The URI to poll for completion status. The response + /// of this URI may be synchronous or asynchronous. + /// + [JsonProperty(PropertyName = "Azure-AsyncOperation")] + public string AzureAsyncOperation { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs new file mode 100644 index 000000000000..aa8b0c740046 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateEndpointServiceConnectionStatus.cs @@ -0,0 +1,24 @@ +// +// 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.KeyVault.Models +{ + + /// + /// Defines values for PrivateEndpointServiceConnectionStatus. + /// + public static class PrivateEndpointServiceConnectionStatus + { + public const string Pending = "Pending"; + public const string Approved = "Approved"; + public const string Rejected = "Rejected"; + public const string Disconnected = "Disconnected"; + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkResource.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkResource.cs new file mode 100644 index 000000000000..d4a4cf2d5482 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkResource.cs @@ -0,0 +1,84 @@ +// +// 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.KeyVault.Models +{ + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A private link resource + /// + [Rest.Serialization.JsonTransformation] + public partial class PrivateLinkResource : Resource + { + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + public PrivateLinkResource() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResource class. + /// + /// Fully qualified identifier of the key vault + /// resource. + /// Name of the key vault resource. + /// Resource type of the key vault resource. + /// Azure location of the key vault + /// resource. + /// Tags assigned to the key vault resource. + /// Group identifier of private link + /// resource. + /// Required member names of private link + /// resource. + /// Required DNS zone names of the the + /// private link resource. + public PrivateLinkResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string groupId = default(string), IList requiredMembers = default(IList), IList requiredZoneNames = default(IList)) + : base(id, name, type, location, tags) + { + GroupId = groupId; + RequiredMembers = requiredMembers; + RequiredZoneNames = requiredZoneNames; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets group identifier of private link resource. + /// + [JsonProperty(PropertyName = "properties.groupId")] + public string GroupId { get; private set; } + + /// + /// Gets required member names of private link resource. + /// + [JsonProperty(PropertyName = "properties.requiredMembers")] + public IList RequiredMembers { get; private set; } + + /// + /// Gets or sets required DNS zone names of the the private link + /// resource. + /// + [JsonProperty(PropertyName = "properties.requiredZoneNames")] + public IList RequiredZoneNames { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkResourceListResult.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkResourceListResult.cs new file mode 100644 index 000000000000..fd22626df1cd --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkResourceListResult.cs @@ -0,0 +1,55 @@ +// +// 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.KeyVault.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A list of private link resources + /// + public partial class PrivateLinkResourceListResult + { + /// + /// Initializes a new instance of the PrivateLinkResourceListResult + /// class. + /// + public PrivateLinkResourceListResult() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkResourceListResult + /// class. + /// + /// Array of private link resources + public PrivateLinkResourceListResult(IList value = default(IList)) + { + Value = value; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets array of private link resources + /// + [JsonProperty(PropertyName = "value")] + public IList Value { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkServiceConnectionState.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkServiceConnectionState.cs new file mode 100644 index 000000000000..936f811c968d --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/PrivateLinkServiceConnectionState.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.Management.KeyVault.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// An object that represents the approval state of the private link + /// connection. + /// + public partial class PrivateLinkServiceConnectionState + { + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState + /// class. + /// + public PrivateLinkServiceConnectionState() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PrivateLinkServiceConnectionState + /// class. + /// + /// Indicates whether the connection has been + /// approved, rejected or removed by the key vault owner. Possible + /// values include: 'Pending', 'Approved', 'Rejected', + /// 'Disconnected' + /// The reason for approval or + /// rejection. + /// A message indicating if changes on the + /// service provider require any updates on the consumer. + public PrivateLinkServiceConnectionState(string status = default(string), string description = default(string), string actionRequired = default(string)) + { + Status = status; + Description = description; + ActionRequired = actionRequired; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets indicates whether the connection has been approved, + /// rejected or removed by the key vault owner. Possible values + /// include: 'Pending', 'Approved', 'Rejected', 'Disconnected' + /// + [JsonProperty(PropertyName = "status")] + public string Status { get; set; } + + /// + /// Gets or sets the reason for approval or rejection. + /// + [JsonProperty(PropertyName = "description")] + public string Description { get; set; } + + /// + /// Gets or sets a message indicating if changes on the service + /// provider require any updates on the consumer. + /// + [JsonProperty(PropertyName = "actionRequired")] + public string ActionRequired { get; set; } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Resource.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Resource.cs index febfb3d09cb8..f645a5524902 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Resource.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Resource.cs @@ -33,15 +33,14 @@ public Resource() /// /// Initializes a new instance of the Resource class. /// - /// The supported Azure location where the key - /// vault should be created. - /// The Azure Resource Manager resource ID for the key - /// vault. - /// The name of the key vault. - /// The resource type of the key vault. - /// The tags that will be assigned to the key vault. - /// - public Resource(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) + /// Fully qualified identifier of the key vault + /// resource. + /// Name of the key vault resource. + /// Resource type of the key vault resource. + /// Azure location of the key vault + /// resource. + /// Tags assigned to the key vault resource. + public Resource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) { Id = id; Name = name; @@ -57,48 +56,34 @@ public Resource() partial void CustomInit(); /// - /// Gets the Azure Resource Manager resource ID for the key vault. + /// Gets fully qualified identifier of the key vault resource. /// [JsonProperty(PropertyName = "id")] public string Id { get; private set; } /// - /// Gets the name of the key vault. + /// Gets name of the key vault resource. /// [JsonProperty(PropertyName = "name")] public string Name { get; private set; } /// - /// Gets the resource type of the key vault. + /// Gets resource type of the key vault resource. /// [JsonProperty(PropertyName = "type")] public string Type { get; private set; } /// - /// Gets or sets the supported Azure location where the key vault - /// should be created. + /// Gets azure location of the key vault resource. /// [JsonProperty(PropertyName = "location")] - public string Location { get; set; } + public string Location { get; private set; } /// - /// Gets or sets the tags that will be assigned to the key vault. + /// Gets tags assigned to the key vault resource. /// [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } + public IDictionary Tags { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (Location == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Location"); - } - } } } diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Vault.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Vault.cs index ab0b32bfe87d..9cd7362df5be 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Vault.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/Vault.cs @@ -11,6 +11,7 @@ namespace Microsoft.Azure.Management.KeyVault.Models { using Microsoft.Rest; + using Microsoft.Rest.Azure; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -19,7 +20,7 @@ namespace Microsoft.Azure.Management.KeyVault.Models /// /// Resource information with extended details. /// - public partial class Vault : Resource + public partial class Vault : IResource { /// /// Initializes a new instance of the Vault class. @@ -33,18 +34,21 @@ public Vault() /// /// Initializes a new instance of the Vault class. /// - /// The supported Azure location where the key - /// vault should be created. /// Properties of the vault - /// The Azure Resource Manager resource ID for the key - /// vault. - /// The name of the key vault. - /// The resource type of the key vault. - /// The tags that will be assigned to the key vault. - /// - public Vault(string location, VaultProperties properties, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary)) - : base(location, id, name, type, tags) + /// Fully qualified identifier of the key vault + /// resource. + /// Name of the key vault resource. + /// Resource type of the key vault resource. + /// Azure location of the key vault + /// resource. + /// Tags assigned to the key vault resource. + public Vault(VaultProperties properties, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) { + Id = id; + Name = name; + Type = type; + Location = location; + Tags = tags; Properties = properties; CustomInit(); } @@ -54,6 +58,36 @@ public Vault() /// partial void CustomInit(); + /// + /// Gets fully qualified identifier of the key vault resource. + /// + [JsonProperty(PropertyName = "id")] + public string Id { get; private set; } + + /// + /// Gets name of the key vault resource. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; private set; } + + /// + /// Gets resource type of the key vault resource. + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; private set; } + + /// + /// Gets or sets azure location of the key vault resource. + /// + [JsonProperty(PropertyName = "location")] + public string Location { get; set; } + + /// + /// Gets or sets tags assigned to the key vault resource. + /// + [JsonProperty(PropertyName = "tags")] + public IDictionary Tags { get; set; } + /// /// Gets or sets properties of the vault /// @@ -66,9 +100,8 @@ public Vault() /// /// Thrown if validation fails /// - public override void Validate() + public virtual void Validate() { - base.Validate(); if (Properties == null) { throw new ValidationException(ValidationRules.CannotBeNull, "Properties"); diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultPatchProperties.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultPatchProperties.cs index 2787a64a38e4..7267477a74d5 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultPatchProperties.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultPatchProperties.cs @@ -48,8 +48,18 @@ public VaultPatchProperties() /// whether Azure Resource Manager is permitted to retrieve secrets /// from the key vault. /// Property to specify whether the - /// 'soft delete' functionality is enabled for this key vault. It does - /// not accept false value. + /// 'soft delete' functionality is enabled for this key vault. Once set + /// to true, it cannot be reverted to false. + /// Property that controls how + /// data actions are authorized. When true, the key vault will use Role + /// Based Access Control (RBAC) for authorization of data actions, and + /// the access policies specified in vault properties will be ignored + /// (warning: this is a preview feature). When false, the key vault + /// will use the access policies specified in vault properties, and any + /// policy stored on Azure Resource Manager will be ignored. If null or + /// not specified, the value of this property will not change. + /// softDelete data retention + /// days. It accepts >=7 and <=90. /// The vault's create mode to indicate /// whether the vault need to be recovered or not. Possible values /// include: 'recover', 'default' @@ -62,7 +72,7 @@ public VaultPatchProperties() /// - that is, the property does not accept false as its value. /// A collection of rules governing the /// accessibility of the vault from specific network locations. - public VaultPatchProperties(System.Guid? tenantId = default(System.Guid?), Sku sku = default(Sku), IList accessPolicies = default(IList), bool? enabledForDeployment = default(bool?), bool? enabledForDiskEncryption = default(bool?), bool? enabledForTemplateDeployment = default(bool?), bool? enableSoftDelete = default(bool?), CreateMode? createMode = default(CreateMode?), bool? enablePurgeProtection = default(bool?), NetworkRuleSet networkAcls = default(NetworkRuleSet)) + public VaultPatchProperties(System.Guid? tenantId = default(System.Guid?), Sku sku = default(Sku), IList accessPolicies = default(IList), bool? enabledForDeployment = default(bool?), bool? enabledForDiskEncryption = default(bool?), bool? enabledForTemplateDeployment = default(bool?), bool? enableSoftDelete = default(bool?), bool? enableRbacAuthorization = default(bool?), int? softDeleteRetentionInDays = default(int?), CreateMode? createMode = default(CreateMode?), bool? enablePurgeProtection = default(bool?), NetworkRuleSet networkAcls = default(NetworkRuleSet)) { TenantId = tenantId; Sku = sku; @@ -71,6 +81,8 @@ public VaultPatchProperties() EnabledForDiskEncryption = enabledForDiskEncryption; EnabledForTemplateDeployment = enabledForTemplateDeployment; EnableSoftDelete = enableSoftDelete; + EnableRbacAuthorization = enableRbacAuthorization; + SoftDeleteRetentionInDays = softDeleteRetentionInDays; CreateMode = createMode; EnablePurgeProtection = enablePurgeProtection; NetworkAcls = networkAcls; @@ -127,12 +139,32 @@ public VaultPatchProperties() /// /// Gets or sets property to specify whether the 'soft delete' - /// functionality is enabled for this key vault. It does not accept - /// false value. + /// functionality is enabled for this key vault. Once set to true, it + /// cannot be reverted to false. /// [JsonProperty(PropertyName = "enableSoftDelete")] public bool? EnableSoftDelete { get; set; } + /// + /// Gets or sets property that controls how data actions are + /// authorized. When true, the key vault will use Role Based Access + /// Control (RBAC) for authorization of data actions, and the access + /// policies specified in vault properties will be ignored (warning: + /// this is a preview feature). When false, the key vault will use the + /// access policies specified in vault properties, and any policy + /// stored on Azure Resource Manager will be ignored. If null or not + /// specified, the value of this property will not change. + /// + [JsonProperty(PropertyName = "enableRbacAuthorization")] + public bool? EnableRbacAuthorization { get; set; } + + /// + /// Gets or sets softDelete data retention days. It accepts &gt;=7 + /// and &lt;=90. + /// + [JsonProperty(PropertyName = "softDeleteRetentionInDays")] + public int? SoftDeleteRetentionInDays { get; set; } + /// /// Gets or sets the vault's create mode to indicate whether the vault /// need to be recovered or not. Possible values include: 'recover', diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultProperties.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultProperties.cs index 8eb8fea06f07..976ca743b9bc 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultProperties.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/Models/VaultProperties.cs @@ -54,8 +54,22 @@ public VaultProperties() /// whether Azure Resource Manager is permitted to retrieve secrets /// from the key vault. /// Property to specify whether the - /// 'soft delete' functionality is enabled for this key vault. It does - /// not accept false value. + /// 'soft delete' functionality is enabled for this key vault. If it's + /// not set to any value(true or false) when creating new key vault, it + /// will be set to true by default. Once set to true, it cannot be + /// reverted to false. + /// softDelete data retention + /// days. It accepts >=7 and <=90. + /// Property that controls how + /// data actions are authorized. When true, the key vault will use Role + /// Based Access Control (RBAC) for authorization of data actions, and + /// the access policies specified in vault properties will be ignored + /// (warning: this is a preview feature). When false, the key vault + /// will use the access policies specified in vault properties, and any + /// policy stored on Azure Resource Manager will be ignored. If null or + /// not specified, the vault is created with the default value of + /// false. Note that management actions are always authorized with + /// RBAC. /// The vault's create mode to indicate /// whether the vault need to be recovered or not. Possible values /// include: 'recover', 'default' @@ -66,9 +80,11 @@ public VaultProperties() /// irrecoverable deletion. The setting is effective only if soft /// delete is also enabled. Enabling this functionality is irreversible /// - that is, the property does not accept false as its value. - /// A collection of rules governing the - /// accessibility of the vault from specific network locations. - public VaultProperties(System.Guid tenantId, Sku sku, IList accessPolicies = default(IList), string vaultUri = default(string), bool? enabledForDeployment = default(bool?), bool? enabledForDiskEncryption = default(bool?), bool? enabledForTemplateDeployment = default(bool?), bool? enableSoftDelete = default(bool?), CreateMode? createMode = default(CreateMode?), bool? enablePurgeProtection = default(bool?), NetworkRuleSet networkAcls = default(NetworkRuleSet)) + /// Rules governing the accessibility of the + /// key vault from specific network locations. + /// List of private endpoint + /// connections associated with the key vault. + public VaultProperties(System.Guid tenantId, Sku sku, IList accessPolicies = default(IList), string vaultUri = default(string), bool? enabledForDeployment = default(bool?), bool? enabledForDiskEncryption = default(bool?), bool? enabledForTemplateDeployment = default(bool?), bool? enableSoftDelete = default(bool?), int? softDeleteRetentionInDays = default(int?), bool? enableRbacAuthorization = default(bool?), CreateMode? createMode = default(CreateMode?), bool? enablePurgeProtection = default(bool?), NetworkRuleSet networkAcls = default(NetworkRuleSet), IList privateEndpointConnections = default(IList)) { TenantId = tenantId; Sku = sku; @@ -78,9 +94,12 @@ public VaultProperties() EnabledForDiskEncryption = enabledForDiskEncryption; EnabledForTemplateDeployment = enabledForTemplateDeployment; EnableSoftDelete = enableSoftDelete; + SoftDeleteRetentionInDays = softDeleteRetentionInDays; + EnableRbacAuthorization = enableRbacAuthorization; CreateMode = createMode; EnablePurgeProtection = enablePurgeProtection; NetworkAcls = networkAcls; + PrivateEndpointConnections = privateEndpointConnections; CustomInit(); } @@ -143,12 +162,34 @@ public VaultProperties() /// /// Gets or sets property to specify whether the 'soft delete' - /// functionality is enabled for this key vault. It does not accept - /// false value. + /// functionality is enabled for this key vault. If it's not set to any + /// value(true or false) when creating new key vault, it will be set to + /// true by default. Once set to true, it cannot be reverted to false. /// [JsonProperty(PropertyName = "enableSoftDelete")] public bool? EnableSoftDelete { get; set; } + /// + /// Gets or sets softDelete data retention days. It accepts &gt;=7 + /// and &lt;=90. + /// + [JsonProperty(PropertyName = "softDeleteRetentionInDays")] + public int? SoftDeleteRetentionInDays { get; set; } + + /// + /// Gets or sets property that controls how data actions are + /// authorized. When true, the key vault will use Role Based Access + /// Control (RBAC) for authorization of data actions, and the access + /// policies specified in vault properties will be ignored (warning: + /// this is a preview feature). When false, the key vault will use the + /// access policies specified in vault properties, and any policy + /// stored on Azure Resource Manager will be ignored. If null or not + /// specified, the vault is created with the default value of false. + /// Note that management actions are always authorized with RBAC. + /// + [JsonProperty(PropertyName = "enableRbacAuthorization")] + public bool? EnableRbacAuthorization { get; set; } + /// /// Gets or sets the vault's create mode to indicate whether the vault /// need to be recovered or not. Possible values include: 'recover', @@ -170,12 +211,19 @@ public VaultProperties() public bool? EnablePurgeProtection { get; set; } /// - /// Gets or sets a collection of rules governing the accessibility of - /// the vault from specific network locations. + /// Gets or sets rules governing the accessibility of the key vault + /// from specific network locations. /// [JsonProperty(PropertyName = "networkAcls")] public NetworkRuleSet NetworkAcls { get; set; } + /// + /// Gets list of private endpoint connections associated with the key + /// vault. + /// + [JsonProperty(PropertyName = "privateEndpointConnections")] + public IList PrivateEndpointConnections { get; private set; } + /// /// Validate the object. /// diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateEndpointConnectionsOperations.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateEndpointConnectionsOperations.cs new file mode 100644 index 000000000000..e064090a5b66 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateEndpointConnectionsOperations.cs @@ -0,0 +1,759 @@ +// +// 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.KeyVault +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateEndpointConnectionsOperations operations. + /// + internal partial class PrivateEndpointConnectionsOperations : IServiceOperations, IPrivateEndpointConnectionsOperations + { + /// + /// Initializes a new instance of the PrivateEndpointConnectionsOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateEndpointConnectionsOperations(KeyVaultManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the KeyVaultManagementClient + /// + public KeyVaultManagementClient Client { get; private set; } + + /// + /// Gets the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// 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 vaultName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (vaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultName"); + } + if (vaultName != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(vaultName, "^[a-zA-Z0-9-]{3,24}$")) + { + throw new ValidationException(ValidationRules.Pattern, "vaultName", "^[a-zA-Z0-9-]{3,24}$"); + } + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("vaultName", vaultName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + 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.KeyVault/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vaultName}", System.Uri.EscapeDataString(vaultName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + 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; + } + + /// + /// Updates the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The intended state of private endpoint connection. + /// + /// + /// 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> PutWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, PrivateEndpointConnection properties, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (vaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultName"); + } + if (vaultName != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(vaultName, "^[a-zA-Z0-9-]{3,24}$")) + { + throw new ValidationException(ValidationRules.Pattern, "vaultName", "^[a-zA-Z0-9-]{3,24}$"); + } + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (properties == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "properties"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("resourceGroupName", resourceGroupName); + tracingParameters.Add("vaultName", vaultName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + tracingParameters.Add("properties", properties); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Put", 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.KeyVault/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vaultName}", System.Uri.EscapeDataString(vaultName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + 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(properties != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(properties, 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); + } + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> DeleteWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginDeleteWithHttpMessagesAsync(resourceGroupName, vaultName, privateEndpointConnectionName, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + + /// + /// Deletes the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// 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> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string vaultName, string privateEndpointConnectionName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (vaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultName"); + } + if (vaultName != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(vaultName, "^[a-zA-Z0-9-]{3,24}$")) + { + throw new ValidationException(ValidationRules.Pattern, "vaultName", "^[a-zA-Z0-9-]{3,24}$"); + } + } + if (privateEndpointConnectionName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateEndpointConnectionName"); + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("vaultName", vaultName); + tracingParameters.Add("privateEndpointConnectionName", privateEndpointConnectionName); + 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.KeyVault/vaults/{vaultName}/privateEndpointConnections/{privateEndpointConnectionName}").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vaultName}", System.Uri.EscapeDataString(vaultName)); + _url = _url.Replace("{privateEndpointConnectionName}", System.Uri.EscapeDataString(privateEndpointConnectionName)); + 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 != 200 && (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(); + } + // 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); + } + } + try + { + _result.Headers = _httpResponse.GetHeadersAsJson().ToObject(JsonSerializer.Create(Client.DeserializationSettings)); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the headers.", _httpResponse.GetHeadersAsJson().ToString(), ex); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs new file mode 100644 index 000000000000..1ecff7b253b5 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateEndpointConnectionsOperationsExtensions.cs @@ -0,0 +1,223 @@ +// +// 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.KeyVault +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PrivateEndpointConnectionsOperations. + /// + public static partial class PrivateEndpointConnectionsOperationsExtensions + { + /// + /// Gets the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + public static PrivateEndpointConnection Get(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName) + { + return operations.GetAsync(resourceGroupName, vaultName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Gets the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The cancellation token. + /// + public static async Task GetAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, vaultName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The intended state of private endpoint connection. + /// + public static PrivateEndpointConnection Put(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName, PrivateEndpointConnection properties) + { + return operations.PutAsync(resourceGroupName, vaultName, privateEndpointConnectionName, properties).GetAwaiter().GetResult(); + } + + /// + /// Updates the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The intended state of private endpoint connection. + /// + /// + /// The cancellation token. + /// + public static async Task PutAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName, PrivateEndpointConnection properties, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.PutWithHttpMessagesAsync(resourceGroupName, vaultName, privateEndpointConnectionName, properties, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + public static PrivateEndpointConnection Delete(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName) + { + return operations.DeleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteWithHttpMessagesAsync(resourceGroupName, vaultName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + public static PrivateEndpointConnection BeginDelete(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName) + { + return operations.BeginDeleteAsync(resourceGroupName, vaultName, privateEndpointConnectionName).GetAwaiter().GetResult(); + } + + /// + /// Deletes the specified private endpoint connection associated with the key + /// vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// Name of the private endpoint connection associated with the key vault. + /// + /// + /// The cancellation token. + /// + public static async Task BeginDeleteAsync(this IPrivateEndpointConnectionsOperations operations, string resourceGroupName, string vaultName, string privateEndpointConnectionName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginDeleteWithHttpMessagesAsync(resourceGroupName, vaultName, privateEndpointConnectionName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateLinkResourcesOperations.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateLinkResourcesOperations.cs new file mode 100644 index 000000000000..b1bde0a13752 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateLinkResourcesOperations.cs @@ -0,0 +1,257 @@ +// +// 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.KeyVault +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + using System.Net; + using System.Net.Http; + using System.Threading; + using System.Threading.Tasks; + + /// + /// PrivateLinkResourcesOperations operations. + /// + internal partial class PrivateLinkResourcesOperations : IServiceOperations, IPrivateLinkResourcesOperations + { + /// + /// Initializes a new instance of the PrivateLinkResourcesOperations class. + /// + /// + /// Reference to the service client. + /// + /// + /// Thrown when a required parameter is null + /// + internal PrivateLinkResourcesOperations(KeyVaultManagementClient client) + { + if (client == null) + { + throw new System.ArgumentNullException("client"); + } + Client = client; + } + + /// + /// Gets a reference to the KeyVaultManagementClient + /// + public KeyVaultManagementClient Client { get; private set; } + + /// + /// Gets the private link resources supported for the key vault. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// 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> ListByVaultWithHttpMessagesAsync(string resourceGroupName, string vaultName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.SubscriptionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); + } + if (resourceGroupName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); + } + if (vaultName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "vaultName"); + } + if (vaultName != null) + { + if (!System.Text.RegularExpressions.Regex.IsMatch(vaultName, "^[a-zA-Z0-9-]{3,24}$")) + { + throw new ValidationException(ValidationRules.Pattern, "vaultName", "^[a-zA-Z0-9-]{3,24}$"); + } + } + 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("resourceGroupName", resourceGroupName); + tracingParameters.Add("vaultName", vaultName); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListByVault", 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.KeyVault/vaults/{vaultName}/privateLinkResources").ToString(); + _url = _url.Replace("{subscriptionId}", System.Uri.EscapeDataString(Client.SubscriptionId)); + _url = _url.Replace("{resourceGroupName}", System.Uri.EscapeDataString(resourceGroupName)); + _url = _url.Replace("{vaultName}", System.Uri.EscapeDataString(vaultName)); + 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; + } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateLinkResourcesOperationsExtensions.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateLinkResourcesOperationsExtensions.cs new file mode 100644 index 000000000000..593cf3fc800f --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/PrivateLinkResourcesOperationsExtensions.cs @@ -0,0 +1,65 @@ +// +// 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.KeyVault +{ + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + using System.Threading; + using System.Threading.Tasks; + + /// + /// Extension methods for PrivateLinkResourcesOperations. + /// + public static partial class PrivateLinkResourcesOperationsExtensions + { + /// + /// Gets the private link resources supported for the key vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + public static PrivateLinkResourceListResult ListByVault(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string vaultName) + { + return operations.ListByVaultAsync(resourceGroupName, vaultName).GetAwaiter().GetResult(); + } + + /// + /// Gets the private link resources supported for the key vault. + /// + /// + /// The operations group for this extension method. + /// + /// + /// Name of the resource group that contains the key vault. + /// + /// + /// The name of the key vault. + /// + /// + /// The cancellation token. + /// + public static async Task ListByVaultAsync(this IPrivateLinkResourcesOperations operations, string resourceGroupName, string vaultName, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListByVaultWithHttpMessagesAsync(resourceGroupName, vaultName, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/SdkInfo_KeyVaultManagementClient.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/SdkInfo_KeyVaultManagementClient.cs index c3901fe8b673..2ec2c146cb46 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/SdkInfo_KeyVaultManagementClient.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/SdkInfo_KeyVaultManagementClient.cs @@ -19,11 +19,24 @@ public static IEnumerable> ApiInfo_KeyVaultManagem { return new Tuple[] { - new Tuple("KeyVault", "Operations", "2018-02-14"), - new Tuple("KeyVault", "Vaults", "2018-02-14"), - new Tuple("KeyVaultManagementClient", "Vaults", "2018-02-14"), + new Tuple("KeyVault", "Operations", "2019-09-01"), + new Tuple("KeyVault", "PrivateEndpointConnections", "2019-09-01"), + new Tuple("KeyVault", "PrivateLinkResources", "2019-09-01"), + new Tuple("KeyVault", "Vaults", "2019-09-01"), + new Tuple("KeyVaultManagementClient", "Vaults", "2019-09-01"), }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "2.0.4413"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/keyvault/resource-manager/readme.md --csharp --version=2.0.4413 --reflect-api-versions --csharp.output-folder=C:\\Users\\yeliu\\isra-fel\\azure-sdk-for-net\\sdk\\keyvault\\Microsoft.Azure.Management.KeyVault\\src\\Generated"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "c9a1ed48c35572cf59cb5030e678a9d614684a7f"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/VaultsOperations.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/VaultsOperations.cs index 8730e2539e2e..175587fccdb5 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/VaultsOperations.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Generated/VaultsOperations.cs @@ -436,7 +436,7 @@ internal VaultsOperations(KeyVaultManagementClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 200 && (int)_statusCode != 204) { var ex = new CloudException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Microsoft.Azure.Management.KeyVault.csproj b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Microsoft.Azure.Management.KeyVault.csproj index 701428f6cc98..ff07f56e4342 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Microsoft.Azure.Management.KeyVault.csproj +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Microsoft.Azure.Management.KeyVault.csproj @@ -8,13 +8,13 @@ Provides key vault management capabilities for Microsoft Azure. Microsoft Azure Key Vault Management Microsoft.Azure.Management.KeyVault - 2.4.3 + 3.0.0 Microsoft Azure key vault management;Key Vault; - + - + $(SdkTargetFx) diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Properties/AssemblyInfo.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Properties/AssemblyInfo.cs index ccd011015ffa..816cf1aaeced 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Properties/AssemblyInfo.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/Properties/AssemblyInfo.cs @@ -9,8 +9,8 @@ [assembly: AssemblyTitle("Microsoft Azure Key Vault Resource Management Library")] [assembly: AssemblyDescription("Provides key vault management capabilities for Microsoft Azure.")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.4.3.0")] +[assembly: AssemblyVersion("3.0.0.0")] +[assembly: AssemblyFileVersion("3.0.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/generate.ps1 b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/generate.ps1 index 4d63f9ba25f5..07cfa8361f71 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/generate.ps1 +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/src/generate.ps1 @@ -1 +1 @@ -Start-AutoRestCodeGeneration -ResourceProvider "keyvault/resource-manager" -AutoRestVersion "latest" -SpecsRepoBranch "keyvault_preview" -SdkGenerationDirectory "$PSScriptRoot\Generated" \ No newline at end of file +Start-AutoRestCodeGeneration -ResourceProvider "keyvault/resource-manager" -AutoRestVersion "2.0.4413" -SdkGenerationDirectory "$PSScriptRoot\Generated" \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/KeyVaultTestBase.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/KeyVaultTestBase.cs index 84e9809050e5..f5e07ec7094b 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/KeyVaultTestBase.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/KeyVaultTestBase.cs @@ -106,7 +106,7 @@ private void Initialize() }; IList < IPRule > ipRules = new List(); - ipRules.Add(new IPRule() { Value = "10.0.0.0/24" }); + ipRules.Add(new IPRule() { Value = "1.2.3.4/32" }); ipRules.Add(new IPRule() { Value = "1.0.0.0/25" }); vaultProperties = new VaultProperties diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/CreateKeyVaultDisableSoftDelete.json b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/CreateKeyVaultDisableSoftDelete.json new file mode 100644 index 000000000000..afc0397a6cd4 --- /dev/null +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/CreateKeyVaultDisableSoftDelete.json @@ -0,0 +1,356 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "865ae27f-de72-4221-9a7d-034a3d0a32e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "19ca643f-7bc6-4a4a-bc2e-2d41cda16b9a" + ], + "x-ms-correlation-request-id": [ + "19ca643f-7bc6-4a4a-bc2e-2d41cda16b9a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191129T092158Z:19ca643f-7bc6-4a4a-bc2e-2d41cda16b9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 29 Nov 2019 09:21:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5560" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/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 \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\": \"vaults/eventGridFilters\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/sdktestrg4901?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzQ5MDE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97582c57-4202-4393-8c5d-0430916ba88d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9cd60f5a-16a7-412f-94ec-9740b9e73919" + ], + "x-ms-correlation-request-id": [ + "9cd60f5a-16a7-412f-94ec-9740b9e73919" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191129T092203Z:9cd60f5a-16a7-412f-94ec-9740b9e73919" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 29 Nov 2019 09:22:02 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4901\",\r\n \"name\": \"sdktestrg4901\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4901/providers/Microsoft.KeyVault/vaults/sdktestvault9662?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0OTY2Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"5edb288d-e5c9-483c-8561-c9faeab79348\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5a365c6-3453-4fff-8e4e-5f2ba0d753c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1188" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.261" + ], + "x-ms-request-id": [ + "9a0a9e75-a2b7-4538-acd9-7892ee8df3ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "e28b7933-4848-4c28-9603-a663ca599f16" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191129T092211Z:e28b7933-4848-4c28-9603-a663ca599f16" + ], + "Date": [ + "Fri, 29 Nov 2019 09:22:10 GMT" + ], + "Content-Length": [ + "1020" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4901/providers/Microsoft.KeyVault/vaults/sdktestvault9662\",\r\n \"name\": \"sdktestvault9662\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"5edb288d-e5c9-483c-8561-c9faeab79348\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://sdktestvault9662.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4901/providers/Microsoft.KeyVault/vaults/sdktestvault9662?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0OTY2Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.261" + ], + "x-ms-request-id": [ + "e766e608-96ef-4cbf-9489-3030d9f671bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "55703714-f2ed-466b-b9c1-570d3c219528" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191129T092242Z:55703714-f2ed-466b-b9c1-570d3c219528" + ], + "Date": [ + "Fri, 29 Nov 2019 09:22:42 GMT" + ], + "Content-Length": [ + "1016" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4901/providers/Microsoft.KeyVault/vaults/sdktestvault9662\",\r\n \"name\": \"sdktestvault9662\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"5edb288d-e5c9-483c-8561-c9faeab79348\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": false,\r\n \"vaultUri\": \"https://sdktestvault9662.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4901/providers/Microsoft.KeyVault/vaults/sdktestvault9662?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ5MDEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0OTY2Mj9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cdf56ae1-b18f-4a81-9e67-6e18b055dba1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.0.261" + ], + "x-ms-request-id": [ + "0222443e-aefa-4512-bbd5-cd91a872bcaf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "d08ebb66-09cc-485b-ab81-5b8d5eec7960" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191129T092248Z:d08ebb66-09cc-485b-ab81-5b8d5eec7960" + ], + "Date": [ + "Fri, 29 Nov 2019 09:22:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Initialize": [ + "sdktestrg4901", + "sdktestvault9662" + ] + }, + "Variables": { + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "ObjectId": "0df1a52f-0f10-4c0f-88bd-5c3260deb0a5", + "SubId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "ApplicationId": "5edb288d-e5c9-483c-8561-c9faeab79348" + } +} \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListDeletedVaults.json b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListDeletedVaults.json index e021347fd022..1d3544ff0fd5 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListDeletedVaults.json +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListDeletedVaults.json @@ -1,178 +1,168 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "421acc54-fb10-416c-b81e-f9368487447a" + "2be9d703-28c3-43d0-a57b-4f19e014e457" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/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 ],\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 \"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 ],\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 },\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 ],\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 },\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 },\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 },\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 ],\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\",\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 },\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 ],\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/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 ],\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 ],\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:18 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11993" ], "x-ms-request-id": [ - "fed16653-5a29-49dc-a804-64befba3f5af" + "510b2379-842c-4c62-9051-5d4bcd7c3cd2" ], "x-ms-correlation-request-id": [ - "fed16653-5a29-49dc-a804-64befba3f5af" + "510b2379-842c-4c62-9051-5d4bcd7c3cd2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180318Z:fed16653-5a29-49dc-a804-64befba3f5af" + "SOUTHEASTASIA:20191202T020905Z:510b2379-842c-4c62-9051-5d4bcd7c3cd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5560" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/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 \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\": \"vaults/eventGridFilters\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourcegroups/sdktestrg8498?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzg0OTg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/sdktestrg8473?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzg0NzM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "dd493214-c625-4ab4-9848-d5d10747985e" + "d47ac539-b432-4d55-b62a-b96ea0c59946" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498\",\r\n \"name\": \"sdktestrg8498\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "187" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:20 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "d640b81e-382a-4ab3-8121-ec9c57260b25" + "835c831f-ef55-4251-bd38-10261704569d" ], "x-ms-correlation-request-id": [ - "d640b81e-382a-4ab3-8121-ec9c57260b25" + "835c831f-ef55-4251-bd38-10261704569d" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180320Z:d640b81e-382a-4ab3-8121-ec9c57260b25" + "SOUTHEASTASIA:20191202T020910Z:835c831f-ef55-4251-bd38-10261704569d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:10 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473\",\r\n \"name\": \"sdktestrg8473\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODczP2FwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjQxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1122" - ], "x-ms-client-request-id": [ - "47b7444e-112b-4a69-8b00-6e78c1e4557b" + "1ba5df02-0ead-48e2-affe-876a735caf27" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873\",\r\n \"name\": \"sdktestvault873\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault873.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1121" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:23 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "35056e89-1044-497d-a9d4-1ded8f50a3b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -189,57 +182,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ - "f1499b74-18ca-42b5-a151-6383af0ba75e" - ], "x-ms-correlation-request-id": [ - "f1499b74-18ca-42b5-a151-6383af0ba75e" + "0012ebc7-3f0b-40f7-b37b-3bae476ae0b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180323Z:f1499b74-18ca-42b5-a151-6383af0ba75e" + "SOUTHEASTASIA:20191202T020919Z:0012ebc7-3f0b-40f7-b37b-3bae476ae0b9" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:19 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417\",\r\n \"name\": \"sdktestvault2417\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault2417.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODczP2FwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjQxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873\",\r\n \"name\": \"sdktestvault873\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault873.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:53 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "4597eac7-4540-4a4b-8083-5e35f84734d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,6 +236,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -254,59 +246,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "13c75b4d-30c2-4555-998c-1d7ea2e31f26" + "11999" ], "x-ms-correlation-request-id": [ - "13c75b4d-30c2-4555-998c-1d7ea2e31f26" + "6cb42a12-eb2a-4a27-8fb3-3a2d8ecb0fb3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180354Z:13c75b4d-30c2-4555-998c-1d7ea2e31f26" + "SOUTHEASTASIA:20191202T020950Z:6cb42a12-eb2a-4a27-8fb3-3a2d8ecb0fb3" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:49 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417\",\r\n \"name\": \"sdktestvault2417\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault2417.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODczP2FwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MjQxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b9113ea-bf5e-414c-95cb-a02b72c68dad" + "1e8f3d12-0443-4dd5-b6c1-4620dbb1995c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "ee0305f3-c30a-445e-bcd5-418647db3545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -314,6 +308,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -323,63 +320,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ - "049596c0-0a6b-482e-918e-a507e961bcaa" - ], "x-ms-correlation-request-id": [ - "049596c0-0a6b-482e-918e-a507e961bcaa" + "7276439f-6d1c-425a-aa1d-11776f7939de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180355Z:049596c0-0a6b-482e-918e-a507e961bcaa" + "SOUTHEASTASIA:20191202T020953Z:7276439f-6d1c-425a-aa1d-11776f7939de" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault873?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0ODczP2FwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault2417?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0MjQxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6aeb2dd0-0cb3-46de-b61d-1d2b001d1bbb" + "e4e94098-adf5-4c9d-a767-7e23ced0e471" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault873\",\r\n \"name\": \"sdktestvault873\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:03:54Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:03:54Z\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:54 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "0db8e61b-4d06-4928-a06a-8d6a1371b4a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,6 +377,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -394,62 +387,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "5f8e4b71-1200-41eb-96b9-4e2201a09c4c" + "11998" ], "x-ms-correlation-request-id": [ - "5f8e4b71-1200-41eb-96b9-4e2201a09c4c" + "8a7b17bb-2de4-427f-8be3-aae0013eb805" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180355Z:5f8e4b71-1200-41eb-96b9-4e2201a09c4c" + "SOUTHEASTASIA:20191202T020954Z:8a7b17bb-2de4-427f-8be3-aae0013eb805" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:53 GMT" + ], + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault2417\",\r\n \"name\": \"sdktestvault2417\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:09:50Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:09:50Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault873?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0ODczP2FwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault2417?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0MjQxNz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a2751ec-e62c-49c6-b614-6480b75e7b97" + "5ec1d315-1155-4cdd-9386-b04cc6fd0b5f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "88" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:47 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "db136df0-bf34-4d26-aeea-68f0967ccdc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -457,6 +449,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -464,71 +459,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-request-id": [ - "a8fb0642-592a-40d0-a9ed-02f2634c6387" + "11980" ], "x-ms-correlation-request-id": [ - "a8fb0642-592a-40d0-a9ed-02f2634c6387" + "bd3df6e5-2326-4ebb-949c-4d305addce49" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180548Z:a8fb0642-592a-40d0-a9ed-02f2634c6387" + "SOUTHEASTASIA:20191202T021153Z:bd3df6e5-2326-4ebb-949c-4d305addce49" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:53 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTkyND9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzA3NT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1122" - ], "x-ms-client-request-id": [ - "b9043d17-bf6c-4876-ac46-f535426d625c" + "a5a53719-3d54-4274-8c7b-37e1b6ae1d98" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924\",\r\n \"name\": \"sdktestvault1924\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault1924.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1121" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:03:57 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "6614ee3e-06a1-445b-ae79-61ed32675ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -536,6 +527,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -545,57 +539,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ - "c2fa7945-0036-439c-a855-22f05fd68112" - ], "x-ms-correlation-request-id": [ - "c2fa7945-0036-439c-a855-22f05fd68112" + "0bb355f8-41d2-4842-94bf-ec0e4247b106" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180358Z:c2fa7945-0036-439c-a855-22f05fd68112" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTkyND9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924\",\r\n \"name\": \"sdktestvault1924\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault1924.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + "SOUTHEASTASIA:20191202T020957Z:0bb355f8-41d2-4842-94bf-ec0e4247b106" + ], + "Date": [ + "Mon, 02 Dec 2019 02:09:57 GMT" + ], + "Content-Length": [ + "964" + ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075\",\r\n \"name\": \"sdktestvault7075\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault7075.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzA3NT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:04:28 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "6903e956-0bea-4cb9-a867-4cae985fc42a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,66 +593,71 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "e8666c69-c5ff-43fe-bd65-56b6e51244d4" - ], "x-ms-correlation-request-id": [ - "e8666c69-c5ff-43fe-bd65-56b6e51244d4" + "f41d9746-a207-4bae-98dc-59f4935c5fc6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180428Z:e8666c69-c5ff-43fe-bd65-56b6e51244d4" + "SOUTHEASTASIA:20191202T021028Z:f41d9746-a207-4bae-98dc-59f4935c5fc6" + ], + "Date": [ + "Mon, 02 Dec 2019 02:10:27 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075\",\r\n \"name\": \"sdktestvault7075\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault7075.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTkyND9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzA3NT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "529a1dfb-b360-4ab5-81bd-14d5541b0cff" + "576cfd59-9420-46f1-aaad-3e00bf37a29b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:04:30 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "f377421b-2818-4663-89ca-8ca76a5b3ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -670,6 +665,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -679,63 +677,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ - "0ff55dd5-4f66-4ae4-be5c-60cca5d7a43a" - ], "x-ms-correlation-request-id": [ - "0ff55dd5-4f66-4ae4-be5c-60cca5d7a43a" + "8cdac516-1e44-4067-921b-25f572c5e095" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180431Z:0ff55dd5-4f66-4ae4-be5c-60cca5d7a43a" + "SOUTHEASTASIA:20191202T021032Z:8cdac516-1e44-4067-921b-25f572c5e095" + ], + "Date": [ + "Mon, 02 Dec 2019 02:10:31 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault1924?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0MTkyND9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault7075?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0NzA3NT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "553886fe-d50e-42c7-b970-d9f50e065a35" + "75f2cea5-0835-47e9-9496-53d9155c705d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault1924\",\r\n \"name\": \"sdktestvault1924\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:04:29Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:04:29Z\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:04:30 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "a5e7c229-4194-4e97-ba80-2182a02ab67d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,6 +734,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -750,62 +744,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "fe01d7f6-dfc4-4006-a972-6ece3408b3df" + "11996" ], "x-ms-correlation-request-id": [ - "fe01d7f6-dfc4-4006-a972-6ece3408b3df" + "3d14494c-a6b3-45d2-878b-2176dbc78a03" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180431Z:fe01d7f6-dfc4-4006-a972-6ece3408b3df" + "SOUTHEASTASIA:20191202T021032Z:3d14494c-a6b3-45d2-878b-2176dbc78a03" + ], + "Date": [ + "Mon, 02 Dec 2019 02:10:31 GMT" + ], + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault7075\",\r\n \"name\": \"sdktestvault7075\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:10:29Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:10:29Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault1924?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0MTkyND9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault7075?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0NzA3NT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3cd0392-c1f8-48b0-8b0a-d43abbd63300" + "53801955-87bf-4443-946d-ae20dac029ca" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "88" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:37 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "391e9198-f729-4b6d-970f-254d303abcfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -813,6 +806,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -820,71 +816,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" - ], - "x-ms-request-id": [ - "242c1e17-917b-4cc1-aa0d-6033a9f0f759" + "11984" ], "x-ms-correlation-request-id": [ - "242c1e17-917b-4cc1-aa0d-6033a9f0f759" + "09a23e42-26ab-421e-ba08-bc65bc43b574" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180537Z:242c1e17-917b-4cc1-aa0d-6033a9f0f759" + "SOUTHEASTASIA:20191202T021141Z:09a23e42-26ab-421e-ba08-bc65bc43b574" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:41 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDUzMD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODIxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1122" - ], "x-ms-client-request-id": [ - "25a6543b-0c91-4ce3-b38d-6fbd56f941e5" + "b808413a-1abc-42c3-9a42-99c90da21e0c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530\",\r\n \"name\": \"sdktestvault4530\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4530.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1121" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:04:31 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "c1823600-8f28-4f44-90d7-ce07efc91851" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -892,6 +884,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -901,57 +896,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ - "59cbee9c-0920-43ec-b30d-3ccad89efbdc" - ], "x-ms-correlation-request-id": [ - "59cbee9c-0920-43ec-b30d-3ccad89efbdc" + "5ce91e09-2150-4c66-994e-357b5c92ae17" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180432Z:59cbee9c-0920-43ec-b30d-3ccad89efbdc" + "SOUTHEASTASIA:20191202T021035Z:5ce91e09-2150-4c66-994e-357b5c92ae17" + ], + "Date": [ + "Mon, 02 Dec 2019 02:10:35 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210\",\r\n \"name\": \"sdktestvault8210\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault8210.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDUzMD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODIxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530\",\r\n \"name\": \"sdktestvault4530\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4530.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:01 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "47ec2bd1-91c2-4b7d-9833-acf8f676b4d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -959,6 +950,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -966,59 +960,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "03df52a9-a7a4-4df5-a60c-c0867830ebdc" + "11995" ], "x-ms-correlation-request-id": [ - "03df52a9-a7a4-4df5-a60c-c0867830ebdc" + "afe44c83-c3a1-493e-90cc-950504280ce9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180502Z:03df52a9-a7a4-4df5-a60c-c0867830ebdc" + "SOUTHEASTASIA:20191202T021106Z:afe44c83-c3a1-493e-90cc-950504280ce9" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:06 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210\",\r\n \"name\": \"sdktestvault8210\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault8210.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0OTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDUzMD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzg0NzMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0ODIxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f758ad61-b938-470b-99ff-66141e9c4720" + "458fb329-c297-4c80-b52e-54ac18c0f640" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "a2682d0b-dc5c-4ea6-8455-8ecd5b65af39" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1026,6 +1022,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1035,63 +1034,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ - "dd287bdb-813f-4eba-9cfa-d6fb7ef29162" - ], "x-ms-correlation-request-id": [ - "dd287bdb-813f-4eba-9cfa-d6fb7ef29162" + "04ff3619-0cc2-4ea9-b443-2a3b76b821ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180504Z:dd287bdb-813f-4eba-9cfa-d6fb7ef29162" + "SOUTHEASTASIA:20191202T021109Z:04ff3619-0cc2-4ea9-b443-2a3b76b821ed" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault4530?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0NDUzMD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault8210?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0ODIxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "437fc933-5ece-466b-9729-35d2b2902dba" + "42fbf436-fc52-4512-9d00-c14f58d31092" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault4530\",\r\n \"name\": \"sdktestvault4530\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:05:02Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:05:02Z\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:03 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "89552c29-8b47-414e-bc9f-e26333b7e8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1099,6 +1091,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1106,62 +1101,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" - ], - "x-ms-request-id": [ - "29a1e3bd-dab4-4c03-915d-1988b3023fa6" + "11994" ], "x-ms-correlation-request-id": [ - "29a1e3bd-dab4-4c03-915d-1988b3023fa6" + "6c7fbbc4-501c-40a0-ae52-c2aead36993c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180504Z:29a1e3bd-dab4-4c03-915d-1988b3023fa6" + "SOUTHEASTASIA:20191202T021109Z:6c7fbbc4-501c-40a0-ae52-c2aead36993c" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:09 GMT" + ], + "Content-Length": [ + "543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault8210\",\r\n \"name\": \"sdktestvault8210\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:11:06Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:11:06Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault4530?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0NDUzMD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault8210?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0ODIxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "575230ff-c3fe-4dae-8d09-388a23610509" + "f502e2e8-9993-44f5-bd06-f8602468a84a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "88" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:16 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "bc551fb8-b698-40e2-b341-9b2299ad5d19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1169,6 +1163,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1176,152 +1173,159 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-request-id": [ - "434b69e1-8148-499a-9c45-00a16c1f527b" + "11989" ], "x-ms-correlation-request-id": [ - "434b69e1-8148-499a-9c45-00a16c1f527b" + "8bbb3620-f740-4b9f-a7e9-fd7689bb250b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180516Z:434b69e1-8148-499a-9c45-00a16c1f527b" + "SOUTHEASTASIA:20191202T021124Z:8bbb3620-f740-4b9f-a7e9-fd7689bb250b" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:24 GMT" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The specified resource does not exist.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvZGVsZXRlZFZhdWx0cz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/deletedVaults?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvZGVsZXRlZFZhdWx0cz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99092650-8b69-4620-8765-20e0dc385167" + "3ccbc7fc-29bf-4620-a65e-63e1beefe03b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault4530\",\r\n \"name\": \"sdktestvault4530\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault4530\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:05:02Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:05:02Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault1924\",\r\n \"name\": \"sdktestvault1924\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault1924\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:04:29Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:04:29Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault873\",\r\n \"name\": \"sdktestvault873\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg8498/providers/Microsoft.KeyVault/vaults/sdktestvault873\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:03:54Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:03:54Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2018-06-26T18:02:55Z\",\r\n \"scheduledPurgeDate\": \"2018-09-24T18:02:55Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-hv2mjop2uqm\",\r\n \"name\": \"cli-keyvault-hv2mjop2uqm\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_mgmtnylcq7c5sdbik5doaak7jhpwk4h4zcgaktcilcte27iicosbzrfxg/providers/Microsoft.KeyVault/vaults/cli-keyvault-hv2mjop2uqm\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-28T01:07:00Z\",\r\n \"scheduledPurgeDate\": \"2018-07-27T01:07:00Z\",\r\n \"purgeProtectionEnabled\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-cuj7e3\",\r\n \"name\": \"cli-test-keyvault-cuj7e3\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sd22aalc55fdtczepdyq4xifeqd474q742ba25xiid3my4ox47rs62w2c/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-cuj7e3\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-27T22:00:44Z\",\r\n \"scheduledPurgeDate\": \"2018-07-26T22:00:44Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-wn7i5o\",\r\n \"name\": \"cli-test-keyvault-wn7i5o\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sdpvp5abvf2mtagcwxskogmtynaii6dy4zuwjcgli7irs2aptzts5iwx3/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-wn7i5o\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-27T21:50:42Z\",\r\n \"scheduledPurgeDate\": \"2018-07-26T21:50:42Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-fswcgh\",\r\n \"name\": \"cli-test-keyvault-fswcgh\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sdbma72fr62nplzbhhn2tro5e2zoxzjeib6xauteidrelaspel6zgsz73/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-fswcgh\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-27T21:45:25Z\",\r\n \"scheduledPurgeDate\": \"2018-07-26T21:45:25Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-7i64zkyrhgi\",\r\n \"name\": \"cli-keyvault-7i64zkyrhgi\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_mgmttq5owdisqr5awwbljp4qdzsgttbdgvthadwk44yfj3yd5l345qal2/providers/Microsoft.KeyVault/vaults/cli-keyvault-7i64zkyrhgi\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-26T07:43:31Z\",\r\n \"scheduledPurgeDate\": \"2018-07-25T07:43:31Z\",\r\n \"purgeProtectionEnabled\": true\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=1dDNboJAFAXgd5k0XRX5rUUT06AMKa13COMMxu4QRsuPQBi0gvHdS%2fsWXdzFSW7OSb4bqsS1W2dVIdH8hkhA2dsKE0adNd%2bgOfrqukbOVfUUV%2fFRnETVTeLh3IpJUp9Ued7LpM2aLqsrqU5TW%2bizxFDMeKoplq0fFFvs94qu22liatpL8pyqTVtfslS0UoUsaWtZH7rJh%2bij%2bFx2aipK0Yn0L8jXuMmUy%2fg5li8MTbcVzVB06%2fFBFuNiXYhqwYtoS6N3Rjn1GI74hs%2bCNS%2f5wfV1YEcTct8g7q4f70oYt0hObMC%2bBnk4QIFN6oY9wXwA7q3CfGcBh54wx6CssAIG6Alt8Yb9fwcy8NECW8GvRe6bwDybup9eWHhLkoMFbrkkmGDKShdY%2bA087IE5o5NjBhyj%2b%2f0H\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:05 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-original-request-ids": [ - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "", - "" + "4da3b189-7d80-4f0b-8f64-4fedd915a788", + "ffb2d5f3-c4b2-42bf-8a49-73da06732e07", + "10c9e4da-244a-4009-89ba-4bc89a29a9a5", + "e2ac9696-cd7c-4038-8c35-7eac80a49e6c", + "21e8ee29-3264-412e-a6b6-36f8c755d71c", + "c509dc3e-d933-4063-95de-48e88713d25f", + "17f0c4b7-b58b-47fd-980a-2956fb5ef1dd", + "ac257ffd-6011-490f-bf3d-4d1b39987ea5", + "a90782ae-a815-48e9-9392-635d27d5c694", + "cff44e4e-1740-4039-a3ee-1efba0e2ecc9", + "cd66a7c6-bec2-4968-ad9f-b3b17c773d30", + "526e8854-ac82-4f23-a367-3a121ab4de12", + "b67590e9-7e7f-4816-a239-1e6fed46a7d5", + "b7827a51-098c-4716-92e8-e7154377167b", + "255e96cb-b200-4ae6-9ae4-1928e0d76ecc", + "76c32ae0-661a-49ac-9154-df65125f3aa0", + "4e921dcd-0c0c-48fa-a792-cb78c283260d", + "c02f85bb-5b73-4a23-baa2-934bf078347c", + "f847bcd3-0080-433e-b15c-b9f23d613ead", + "17b9020e-b408-4679-9ad2-3e13de221607", + "248e76d7-f0fe-41d4-8287-60b424b6c8ef", + "b4b8935b-7d00-4691-b25c-36ffae638294", + "132a43dc-2a30-44e1-8529-843d6a22398d", + "f31cfeb7-4258-4180-852f-edb2c9dd39ef", + "778bf09b-0338-43b6-9290-1d95d2572777", + "c360ff2f-498e-465d-ac42-410e02f697b7", + "c006bba5-d2ea-488e-a691-122d00605c4f", + "11f7294d-fc31-4d35-ba21-9245eb31d0ad", + "8d0fb3a5-f533-4610-8d78-4ed7e2d41e8f", + "f90fd57b-1c0e-4e88-9f53-95b6b3e22c76" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "11993" ], "x-ms-request-id": [ - "881e6fde-316f-40c6-ab24-ab29aa6898c9" + "db2d4552-84d5-4aca-9ec4-aa6d0aecd0be" ], "x-ms-correlation-request-id": [ - "881e6fde-316f-40c6-ab24-ab29aa6898c9" + "db2d4552-84d5-4aca-9ec4-aa6d0aecd0be" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180505Z:881e6fde-316f-40c6-ab24-ab29aa6898c9" + "SOUTHEASTASIA:20191202T021112Z:db2d4552-84d5-4aca-9ec4-aa6d0aecd0be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3781" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault8210\",\r\n \"name\": \"sdktestvault8210\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault8210\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:11:06Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:11:06Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault7075\",\r\n \"name\": \"sdktestvault7075\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault7075\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:10:29Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:10:29Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault2417\",\r\n \"name\": \"sdktestvault2417\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg8473/providers/Microsoft.KeyVault/vaults/sdktestvault2417\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:09:50Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:09:50Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:08:54Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:08:54Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault9018\",\r\n \"name\": \"sdktestvault9018\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:07:41Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:07:41Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/westus/deletedVaults/ps4177\",\r\n \"name\": \"ps4177\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8088/providers/Microsoft.KeyVault/vaults/ps4177\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2019-11-29T06:24:52Z\",\r\n \"scheduledPurgeDate\": \"2020-02-27T06:24:52Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/deletedVaults?api-version=2019-09-01&%24skiptoken=3ZDRboIwAEX%2fpVn2NKSymYGJWZyUTWdLqC2GvRWoDkEgtCrW%2bO8j%2b4wl9%2bUkN%2fcm5wZq2et1UZcKTG%2bAhJR9LhBhdL7mGzAFP1q3amrbR1GLvTzKWo%2bEOXVylDVHW51SlXVFq4umVnbmZWnuOdDKIMysF%2bc1s9yJk1quELtnNxW5kKndds25yGWnbFxkXaOanR59yWssTpW2c1lJLfM%2fUG%2biLazz0BzGZw4cexYcMn58UOXw2JSynvEy3tJ4xSinAUMx33AvXPOK7%2fzlGLP9lZg5DH1sQj8xxKArZoFLEe6xif2QJxfqk4AguqBotaAcO5QFiPDIoYhPMIvAE9iiDfsPHpYTfEAXYvYmZGWPWe5GLIIhwiaCycCDCb96xxz1pPz%2boGUC8WHwh7hDeQTu918%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault4530/purge?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0NDUzMC9wdXJnZT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault8210/purge?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0ODIxMC9wdXJnZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "497989f7-21ec-4af9-8cb7-073dea2d046d" + "0743d0d3-1e65-4fc7-83bf-02f992a1391e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:06 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTA3MDQ0Nzc5NXwwRUEzMUFCRThCNDY0MDZEQUZBREZBRTMxQjE1NjU0RA?api-version=2018-02-14" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDczMzMxODg2MHxDNzIxNDMyNUQzRkM0RjdFODNBQkE2RTBDQThCRjZEQQ?api-version=2019-09-01" ], "Retry-After": [ "5" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "e43eaf5a-16cd-483e-81e5-74e5bab492e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,6 +1333,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1336,59 +1343,58 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "f3dd9b70-41c8-41cb-bac7-508935b4989c" + "1199" ], "x-ms-correlation-request-id": [ - "f3dd9b70-41c8-41cb-bac7-508935b4989c" + "3104ce34-e0f3-4086-8e31-addc63755c3f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180506Z:f3dd9b70-41c8-41cb-bac7-508935b4989c" + "SOUTHEASTASIA:20191202T021112Z:3104ce34-e0f3-4086-8e31-addc63755c3f" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:12 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTA3MDQ0Nzc5NXwwRUEzMUFCRThCNDY0MDZEQUZBREZBRTMxQjE1NjU0RA?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1UQTNNRFEwTnpjNU5Yd3dSVUV6TVVGQ1JUaENORFkwTURaRVFVWkJSRVpCUlRNeFFqRTFOalUwUkE/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDczMzMxODg2MHxDNzIxNDMyNUQzRkM0RjdFODNBQkE2RTBDQThCRjZEQQ?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EY3pNek14T0RnMk1IeEROekl4TkRNeU5VUXpSa00wUmpkRk9ETkJRa0UyUlRCRFFUaENSalpFUVE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:06Z\",\r\n \"lastActionDateTime\": \"2018-06-26 18:05:14Z\",\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:16 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDczMzMxODg2MHxDNzIxNDMyNUQzRkM0RjdFODNBQkE2RTBDQThCRjZEQQ?api-version=2019-09-01" ], - "Vary": [ - "Accept-Encoding" + "Retry-After": [ + "5" ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "679ceec8-fd62-4238-98b4-446c0520fd54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1396,6 +1402,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1403,59 +1412,121 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" - ], - "x-ms-request-id": [ - "77d5f84a-92c0-45fc-9bea-fd89b77e3757" + "11992" ], "x-ms-correlation-request-id": [ - "77d5f84a-92c0-45fc-9bea-fd89b77e3757" + "96f27c51-1d36-403b-9977-4c9d82842c9e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180516Z:77d5f84a-92c0-45fc-9bea-fd89b77e3757" + "SOUTHEASTASIA:20191202T021118Z:96f27c51-1d36-403b-9977-4c9d82842c9e" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:17 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:12Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTA3MDQ0Nzc5NXwwRUEzMUFCRThCNDY0MDZEQUZBREZBRTMxQjE1NjU0RA?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1UQTNNRFEwTnpjNU5Yd3dSVUV6TVVGQ1JUaENORFkwTURaRVFVWkJSRVpCUlRNeFFqRTFOalUwUkE/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDczMzMxODg2MHxDNzIxNDMyNUQzRkM0RjdFODNBQkE2RTBDQThCRjZEQQ?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EY3pNek14T0RnMk1IeEROekl4TkRNeU5VUXpSa00wUmpkRk9ETkJRa0UyUlRCRFFUaENSalpFUVE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:06Z\",\r\n \"lastActionDateTime\": \"2018-06-26 18:05:14Z\",\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:16 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "x-ms-keyvault-service-version": [ + "1.1.0.261" + ], + "x-ms-request-id": [ + "298b65d5-394c-4965-8b31-fc07ff982dac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "610c4572-35bf-4f9b-ad0d-b524ee913fda" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191202T021123Z:610c4572-35bf-4f9b-ad0d-b524ee913fda" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:23 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:12Z\",\r\n \"lastActionDateTime\": \"2019-12-02 02:11:20Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDczMzMxODg2MHxDNzIxNDMyNUQzRkM0RjdFODNBQkE2RTBDQThCRjZEQQ?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EY3pNek14T0RnMk1IeEROekl4TkRNeU5VUXpSa00wUmpkRk9ETkJRa0UyUlRCRFFUaENSalpFUVE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "f3740225-9911-4b95-bd71-dd4f076f4458" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1463,6 +1534,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1470,65 +1544,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "f380f772-0c44-496e-ad50-c2ceaec00dd9" + "11990" ], "x-ms-correlation-request-id": [ - "f380f772-0c44-496e-ad50-c2ceaec00dd9" + "33afd1b9-ff89-46b1-8b88-3e8b77dc701c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180516Z:f380f772-0c44-496e-ad50-c2ceaec00dd9" + "SOUTHEASTASIA:20191202T021124Z:33afd1b9-ff89-46b1-8b88-3e8b77dc701c" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:24 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:12Z\",\r\n \"lastActionDateTime\": \"2019-12-02 02:11:20Z\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault1924/purge?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0MTkyNC9wdXJnZT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault7075/purge?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0NzA3NS9wdXJnZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e8b300-c90f-4446-89b3-0617f8373869" + "603ab1f0-2489-4111-a164-8613eb297c60" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:16 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTE3NzQwODcxNXwzNDg0OUQwNTc0Mzg0OUYzQTAzMDBGRTc0RDMzOUI2Qw?api-version=2018-02-14" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01" ], "Retry-After": [ "5" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "da9bb3c5-3596-4fec-93f1-cb3179c4c904" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,6 +1612,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1543,62 +1622,58 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "04f898ca-c6bd-44bf-8089-59ed4d169bfe" + "1198" ], "x-ms-correlation-request-id": [ - "04f898ca-c6bd-44bf-8089-59ed4d169bfe" + "0e559095-2762-4c14-867d-22678bfb4cfd" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180516Z:04f898ca-c6bd-44bf-8089-59ed4d169bfe" + "SOUTHEASTASIA:20191202T021125Z:0e559095-2762-4c14-867d-22678bfb4cfd" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTE3NzQwODcxNXwzNDg0OUQwNTc0Mzg0OUYzQTAzMDBGRTc0RDMzOUI2Qw?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1URTNOelF3T0RjeE5Yd3pORGcwT1VRd05UYzBNemcwT1VZelFUQXpNREJHUlRjMFJETXpPVUkyUXc/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EZzJNakUzTVRNd09YdzBPRE01UlVaR1FqZ3dNRE0wUWpoRlFUVTBNRFJFTkRkR1JUVTNRVEl4Tnc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:16Z\",\r\n \"status\": \"NotStarted\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "64" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:26 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTE3NzQwODcxNXwzNDg0OUQwNTc0Mzg0OUYzQTAzMDBGRTc0RDMzOUI2Qw?api-version=2018-02-14" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01" ], "Retry-After": [ "5" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "100da788-2574-4412-84a5-29faa26430f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1606,6 +1681,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1613,59 +1691,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-request-id": [ - "5cee3134-b3f1-4b65-a7d4-81ee0a3a6d15" + "11988" ], "x-ms-correlation-request-id": [ - "5cee3134-b3f1-4b65-a7d4-81ee0a3a6d15" + "ef9563bf-c8c8-4de6-9f72-85a265df2357" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180526Z:5cee3134-b3f1-4b65-a7d4-81ee0a3a6d15" - ] - }, + "SOUTHEASTASIA:20191202T021130Z:ef9563bf-c8c8-4de6-9f72-85a265df2357" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:30 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:25Z\",\r\n \"status\": \"NotStarted\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTE3NzQwODcxNXwzNDg0OUQwNTc0Mzg0OUYzQTAzMDBGRTc0RDMzOUI2Qw?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1URTNOelF3T0RjeE5Yd3pORGcwT1VRd05UYzBNemcwT1VZelFUQXpNREJHUlRjMFJETXpPVUkyUXc/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EZzJNakUzTVRNd09YdzBPRE01UlVaR1FqZ3dNRE0wUWpoRlFUVTBNRFJFTkRkR1JUVTNRVEl4Tnc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:16Z\",\r\n \"lastActionDateTime\": \"2018-06-26 18:05:29Z\",\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:37 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01" ], - "Vary": [ - "Accept-Encoding" + "Retry-After": [ + "5" ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "7706886d-5e9e-4802-b77e-0d149012ea38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1673,6 +1753,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1680,59 +1763,121 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "c813f1bf-0614-4ce3-ad2b-78949b076796" + "11987" ], "x-ms-correlation-request-id": [ - "c813f1bf-0614-4ce3-ad2b-78949b076796" + "48aaf066-3b83-4a14-be3a-3c38d6dc193c" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180537Z:c813f1bf-0614-4ce3-ad2b-78949b076796" + "SOUTHEASTASIA:20191202T021136Z:48aaf066-3b83-4a14-be3a-3c38d6dc193c" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:35 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:25Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTE3NzQwODcxNXwzNDg0OUQwNTc0Mzg0OUYzQTAzMDBGRTc0RDMzOUI2Qw?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1URTNOelF3T0RjeE5Yd3pORGcwT1VRd05UYzBNemcwT1VZelFUQXpNREJHUlRjMFJETXpPVUkyUXc/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EZzJNakUzTVRNd09YdzBPRE01UlVaR1FqZ3dNRE0wUWpoRlFUVTBNRFJFTkRkR1JUVTNRVEl4Tnc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:16Z\",\r\n \"lastActionDateTime\": \"2018-06-26 18:05:29Z\",\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:37 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "x-ms-keyvault-service-version": [ + "1.1.0.261" + ], + "x-ms-request-id": [ + "a6f98a1a-321f-431b-a762-b469578cdcbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "674824a1-e2b9-4970-a006-78646392f862" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191202T021141Z:674824a1-e2b9-4970-a006-78646392f862" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:41 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:25Z\",\r\n \"lastActionDateTime\": \"2019-12-02 02:11:36Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NDg2MjE3MTMwOXw0ODM5RUZGQjgwMDM0QjhFQTU0MDRENDdGRTU3QTIxNw?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5EZzJNakUzTVRNd09YdzBPRE01UlVaR1FqZ3dNRE0wUWpoRlFUVTBNRFJFTkRkR1JUVTNRVEl4Tnc/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "5d3c2747-7de7-447f-9157-8ec42d10091f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1740,6 +1885,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1747,65 +1895,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" - ], - "x-ms-request-id": [ - "fb0cde05-7f69-4a7b-96e3-874e4e907f19" + "11985" ], "x-ms-correlation-request-id": [ - "fb0cde05-7f69-4a7b-96e3-874e4e907f19" + "3519336a-98c3-49d2-81a1-409cc36082e5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180537Z:fb0cde05-7f69-4a7b-96e3-874e4e907f19" + "SOUTHEASTASIA:20191202T021141Z:3519336a-98c3-49d2-81a1-409cc36082e5" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:41 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:25Z\",\r\n \"lastActionDateTime\": \"2019-12-02 02:11:36Z\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault873/purge?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0ODczL3B1cmdlP2FwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/North%20Central%20US/deletedVaults/sdktestvault2417/purge?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL05vcnRoJTIwQ2VudHJhbCUyMFVTL2RlbGV0ZWRWYXVsdHMvc2RrdGVzdHZhdWx0MjQxNy9wdXJnZT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02212e34-2d3d-4a40-99ed-8b0366c4f78a" + "fcc6e2be-216b-433c-bdde-28cec3829503" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:37 GMT" - ], "Pragma": [ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTM4NzE2NjY0MHw2REUyMDE1MEYxNTY0N0M5ODBGNkVBODQxQThFNUE0Mw?api-version=2018-02-14" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NTAzMTU5NzQzOXw4RjREQUJFMjk0MkU0OEI4Qjk4NTE2MzMyRThFRUYxMA?api-version=2019-09-01" ], "Retry-After": [ "5" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "5ab7edb3-3f1e-4bfa-9f48-3a1034fa7faa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1813,6 +1963,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1820,59 +1973,58 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" - ], - "x-ms-request-id": [ - "c495a4a6-88b0-4e58-b9d2-216ef8022c5b" + "1197" ], "x-ms-correlation-request-id": [ - "c495a4a6-88b0-4e58-b9d2-216ef8022c5b" + "0e9b5bbc-84a5-4c07-8465-3c5444d052cf" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180537Z:c495a4a6-88b0-4e58-b9d2-216ef8022c5b" + "SOUTHEASTASIA:20191202T021142Z:0e9b5bbc-84a5-4c07-8465-3c5444d052cf" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTM4NzE2NjY0MHw2REUyMDE1MEYxNTY0N0M5ODBGNkVBODQxQThFNUE0Mw?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1UTTROekUyTmpZME1IdzJSRVV5TURFMU1FWXhOVFkwTjBNNU9EQkdOa1ZCT0RReFFUaEZOVUUwTXc/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NTAzMTU5NzQzOXw4RjREQUJFMjk0MkU0OEI4Qjk4NTE2MzMyRThFRUYxMA?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5UQXpNVFU1TnpRek9YdzRSalJFUVVKRk1qazBNa1UwT0VJNFFqazROVEUyTXpNeVJUaEZSVVl4TUE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:37Z\",\r\n \"lastActionDateTime\": \"2018-06-26 18:05:46Z\",\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:47 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NTAzMTU5NzQzOXw4RjREQUJFMjk0MkU0OEI4Qjk4NTE2MzMyRThFRUYxMA?api-version=2019-09-01" ], - "Vary": [ - "Accept-Encoding" + "Retry-After": [ + "5" ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "7fd98e91-c767-4ab4-9788-2cb1bab0ef6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1880,6 +2032,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1887,59 +2042,121 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" - ], - "x-ms-request-id": [ - "21742a31-72ac-4883-ac6a-c36cc1effbe4" + "11983" ], "x-ms-correlation-request-id": [ - "21742a31-72ac-4883-ac6a-c36cc1effbe4" + "7ef693b4-b244-45aa-9e70-c0ec3ad7cba1" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180548Z:21742a31-72ac-4883-ac6a-c36cc1effbe4" + "SOUTHEASTASIA:20191202T021147Z:7ef693b4-b244-45aa-9e70-c0ec3ad7cba1" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:47 GMT" + ], + "Content-Length": [ + "64" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:42Z\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNjY1NjMzMTM4NzE2NjY0MHw2REUyMDE1MEYxNTY0N0M5ODBGNkVBODQxQThFNUE0Mw?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOalkxTmpNek1UTTROekUyTmpZME1IdzJSRVV5TURFMU1FWXhOVFkwTjBNNU9EQkdOa1ZCT0RReFFUaEZOVUUwTXc/YXBpLXZlcnNpb249MjAxOC0wMi0xNA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NTAzMTU5NzQzOXw4RjREQUJFMjk0MkU0OEI4Qjk4NTE2MzMyRThFRUYxMA?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5UQXpNVFU1TnpRek9YdzRSalJFUVVKRk1qazBNa1UwT0VJNFFqazROVEUyTXpNeVJUaEZSVVl4TUE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"createdDateTime\": \"2018-06-26 18:05:37Z\",\r\n \"lastActionDateTime\": \"2018-06-26 18:05:46Z\",\r\n \"status\": \"Succeeded\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:47 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" + "x-ms-keyvault-service-version": [ + "1.1.0.261" + ], + "x-ms-request-id": [ + "247bb2b0-ca64-45b2-af49-5ba1e0a2035b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Server": [ "Microsoft-IIS/10.0" ], - "Vary": [ - "Accept-Encoding" + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "f0c706c6-9d3f-48ee-8c39-0a7727f368d2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20191202T021153Z:f0c706c6-9d3f-48ee-8c39-0a7727f368d2" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:52 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:42Z\",\r\n \"lastActionDateTime\": \"2019-12-02 02:11:52Z\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/operationResults/VVR8MDYzNzEwODQ5NTAzMTU5NzQzOXw4RjREQUJFMjk0MkU0OEI4Qjk4NTE2MzMyRThFRUYxMA?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvbG9jYXRpb25zL25vcnRoY2VudHJhbHVzL29wZXJhdGlvblJlc3VsdHMvVlZSOE1EWXpOekV3T0RRNU5UQXpNVFU1TnpRek9YdzRSalJFUVVKRk1qazBNa1UwT0VJNFFqazROVEUyTXpNeVJUaEZSVVl4TUE/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "3e064804-74d4-4076-b6fd-beb020f03cf9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1947,6 +2164,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -1954,99 +2174,111 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" - ], - "x-ms-request-id": [ - "934775a1-5999-48c1-9d46-1469eeeb428d" + "11981" ], "x-ms-correlation-request-id": [ - "934775a1-5999-48c1-9d46-1469eeeb428d" + "a97640cf-bedb-4ed2-8bd2-4791ece6e489" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180548Z:934775a1-5999-48c1-9d46-1469eeeb428d" + "SOUTHEASTASIA:20191202T021153Z:a97640cf-bedb-4ed2-8bd2-4791ece6e489" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:52 GMT" + ], + "Content-Length": [ + "107" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"createdDateTime\": \"2019-12-02 02:11:42Z\",\r\n \"lastActionDateTime\": \"2019-12-02 02:11:52Z\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=1dDNboJAFAXgd5k0XRX5rUUT06AMKa13COMMxu4QRsuPQBi0gvHdS%2fsWXdzFSW7OSb4bqsS1W2dVIdH8hkhA2dsKE0adNd%2bgOfrqukbOVfUUV%2fFRnETVTeLh3IpJUp9Ued7LpM2aLqsrqU5TW%2bizxFDMeKoplq0fFFvs94qu22liatpL8pyqTVtfslS0UoUsaWtZH7rJh%2bij%2bFx2aipK0Yn0L8jXuMmUy%2fg5li8MTbcVzVB06%2fFBFuNiXYhqwYtoS6N3Rjn1GI74hs%2bCNS%2f5wfV1YEcTct8g7q4f70oYt0hObMC%2bBnk4QIFN6oY9wXwA7q3CfGcBh54wx6CssAIG6Alt8Yb9fwcy8NECW8GvRe6bwDybup9eWHhLkoMFbrkkmGDKShdY%2bA087IE5o5NjBhyj%2b%2f0H", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvZGVsZXRlZFZhdWx0cz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0JiUyNHNraXB0b2tlbj0xZEROYm9KQUZBWGdkNWswWFJYNXJVVVQwNkFNS2ExM0NPTU14dTRRUnN1UFFCaTBndkhkUyUyZnNXWGR6RlNXN09TYjRicXNTMVcyZFZJZEg4aGtoQTJkc0tFMGFkTmQlMmJnT2ZycXVrYk9WZlVVViUyZkZSbkVUVlRlTGgzSXBKVXA5VWVkN0xwTTJhTHFzcnFVNVRXJTJiaXp4RkRNZUtvcGxxMGZGRnZzOTRxdTIybGlhdHBMOHB5cVRWdGZzbFMwVW9Vc2FXdFpIN3JKaCUyYmlqJTJiRngyYWlwSzBZbjBMOGpYdU1tVXklMmZnNWxpOE1UYmNWelZCMDYlMmZGQkZ1TmlYWWhxd1l0b1M2TjNSam4xR0k3NGhzJTJiQ05TJTJmNXdmVjFZRWNUY3Q4ZzdxNGY3MG9ZdDBoT2JNQyUyYkJuazRRSUZONm9ZOXdYd0E3cTNDZkdjQmg1NHd4NkNzc0FJRzZBbHQ4WWI5ZndjeThORUNXOEd2UmU2YndEeWJ1cDllV0hoTGtvTUZicmtrbUdES1NoZFklMmJBMDg3SUU1bzVOakJoeWolMmIlMmYwSA==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/deletedVaults?api-version=2019-09-01&%24skiptoken=3ZDRboIwAEX%2fpVn2NKSymYGJWZyUTWdLqC2GvRWoDkEgtCrW%2bO8j%2b4wl9%2bUkN%2fcm5wZq2et1UZcKTG%2bAhJR9LhBhdL7mGzAFP1q3amrbR1GLvTzKWo%2bEOXVylDVHW51SlXVFq4umVnbmZWnuOdDKIMysF%2bc1s9yJk1quELtnNxW5kKndds25yGWnbFxkXaOanR59yWssTpW2c1lJLfM%2fUG%2biLazz0BzGZw4cexYcMn58UOXw2JSynvEy3tJ4xSinAUMx33AvXPOK7%2fzlGLP9lZg5DH1sQj8xxKArZoFLEe6xif2QJxfqk4AguqBotaAcO5QFiPDIoYhPMIvAE9iiDfsPHpYTfEAXYvYmZGWPWe5GLIIhwiaCycCDCb96xxz1pPz%2boGUC8WHwh7hDeQTu918%3d", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvZGVsZXRlZFZhdWx0cz9hcGktdmVyc2lvbj0yMDE5LTA5LTAxJiUyNHNraXB0b2tlbj0zWkRSYm9Jd0FFWCUyZnBWbjJOS1N5bVlHSldaeVVUV2RMcUMyR3ZSV29Ea0VndENyVyUyYk84aiUyYjR3bDklMmJVa04lMmZjbTV3WnEyZXQxVVpjS1RHJTJiQWhKUjlMaEJoZEw3bUd6QUZQMXEzYW1yYlIxR0x2VHpLV28lMmJFT1hWeWxEVkhXNTFTbFhWRnE0dW1WbmJtWldudU9kREtJTXlzRiUyYmMxczl5SmsxcXVFTHRuTnhXNWtLbmRkczI1eUdXbmJGeGtYYU9hblI1OXlXc3NUcFcyYzFsSkxmTSUyZlVHJTJiaUxhenowQnpHWnc0Y2V4WWNNbjU4VU9YdzJKU3ludkV5M3RKNHhTaW5BVU14MzNBdlhQT0s3JTJmemxHTFA5bFpnNURIMXNRajh4eEtBclpvRkxFZTZ4aWYyUUp4ZnFrNEFndXFCb3RhQWNPNVFGaVBESW9ZaFBNSXZBRTlpaURmc1BIcFlUZkVBWFl2WW1aR1dQV2U1R0xJSWh3aWFDeWNDRENiOTZ4eHoxcFB6JTJib0dVQzhXSHdoN2hEZVFUdTkxOCUzZA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c87db8bc-a84b-4a80-8ad0-4554b4ca27da" + "f300500a-7ed8-4ae8-b281-6e3db8b0d797" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-keyvault-2mpilatm5yc\",\r\n \"name\": \"cli-keyvault-2mpilatm5yc\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_mgmt5ogbv3ud54qaonj2ldzqf6vhrmxdn6lztm2van6zrvlxvu4xcwqus/providers/Microsoft.KeyVault/vaults/cli-keyvault-2mpilatm5yc\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-26T07:41:07Z\",\r\n \"scheduledPurgeDate\": \"2018-07-25T07:41:07Z\",\r\n \"purgeProtectionEnabled\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-uajch3\",\r\n \"name\": \"cli-test-keyvault-uajch3\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sdpqe7vy7xla6y5kzaw36kcwp4rthkkbdvunlvinam6vq2rsiday4q6qx/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-uajch3\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-11T10:51:56Z\",\r\n \"scheduledPurgeDate\": \"2018-07-10T10:51:56Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-ge62p3\",\r\n \"name\": \"cli-test-keyvault-ge62p3\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sdq6evxzamzk323ohjqpx5uhgwqfvhppsk6aa2z6dy4ua6sh75f2n2id7/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-ge62p3\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-11T10:46:28Z\",\r\n \"scheduledPurgeDate\": \"2018-07-10T10:46:28Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-fdjjvk\",\r\n \"name\": \"cli-test-keyvault-fdjjvk\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sd3x2hejfukvg5xdrsnqgvu3cqqdtdfudre6lrlb3fwf5bmikagk4znrf/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-fdjjvk\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-11T10:38:41Z\",\r\n \"scheduledPurgeDate\": \"2018-07-10T10:38:41Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/locations/westus/deletedVaults/cli-test-keyvault-pzbren\",\r\n \"name\": \"cli-test-keyvault-pzbren\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/cli_test_keyvault_sdmcvttsomlthokks4e76svrchmbu5mt7hzyzdmog3jhniz7pfvu4faiz/providers/Microsoft.KeyVault/vaults/cli-test-keyvault-pzbren\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"deletionDate\": \"2018-04-11T10:34:51Z\",\r\n \"scheduledPurgeDate\": \"2018-07-10T10:34:51Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault/deletedVaults?api-version=2018-02-14&%24skiptoken=JY1bT4MwAEb%2fCzG%2blbawTUay%2bCBg0LVkQFn2yKUglFtoN5Fl%2f12ib99JTs5313o%2bq2PdC6nZd%2b3sRjGLNFv7UmqUNoRd2qcV73iv9HS5TlzPhw7KaybzqR5VPfQS7gqL431uADPdIbCxcAksnmUAY6vITYRe8m0Bx2m41QWfJCR1Pg1yKJX%2byX%2bS9NoqWPCWK178gXxNxxrcVnONHwyELYAMgDfPT1Ksj4Pg%2fYGJ5BwmH3HIQi92ExaxfXBkLSsdH5O4MgOnwnQR34FzQbSpZtJQiwp%2fS113DlnyTpHn%2fW9%2fIU37RmIXBe7FJILMBJ20x%2bMX\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:05:48 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-original-request-ids": [ - "", - "" + "f02b87cb-395c-4283-83ec-3567c737fbc4", + "95426564-66b7-4298-b7c1-f44b54e0b4cb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "11979" ], "x-ms-request-id": [ - "ee25ca5a-4fa1-484d-a423-076f0902502c" + "7548b723-b7c9-4f92-8def-73f995d01177" ], "x-ms-correlation-request-id": [ - "ee25ca5a-4fa1-484d-a423-076f0902502c" + "7548b723-b7c9-4f92-8def-73f995d01177" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180548Z:ee25ca5a-4fa1-484d-a423-076f0902502c" + "SOUTHEASTASIA:20191202T021154Z:7548b723-b7c9-4f92-8def-73f995d01177" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:11:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3260" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault4201\",\r\n \"name\": \"sdktestvault4201\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:07:37Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:07:37Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault3903\",\r\n \"name\": \"sdktestvault3903\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-12-02T02:07:34Z\",\r\n \"scheduledPurgeDate\": \"2020-03-01T02:07:34Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault9622\",\r\n \"name\": \"sdktestvault9622\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg3177/providers/Microsoft.KeyVault/vaults/sdktestvault9622\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-11-29T07:42:33Z\",\r\n \"scheduledPurgeDate\": \"2020-02-27T07:42:33Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault3798\",\r\n \"name\": \"sdktestvault3798\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-11-29T07:42:09Z\",\r\n \"scheduledPurgeDate\": \"2020-02-27T07:42:09Z\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/locations/northcentralus/deletedVaults/sdktestvault6374\",\r\n \"name\": \"sdktestvault6374\",\r\n \"type\": \"Microsoft.KeyVault/deletedVaults\",\r\n \"properties\": {\r\n \"vaultId\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7723/providers/Microsoft.KeyVault/vaults/sdktestvault6374\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"deletionDate\": \"2019-11-29T07:41:03Z\",\r\n \"scheduledPurgeDate\": \"2020-02-27T07:41:03Z\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault/deletedVaults?api-version=2019-09-01&%24skiptoken=HY1da4MwAEX%2fi4y9aaKzTIUytqqbm7E0NQ72FmNsXfzCxDIt%2fe8Ng%2ftyuId7r0bP%2f1Ta9EIawdXI9jj%2f2EVZjl9TcjQC46zUKAMAOtrTE%2b94ryy6zhO32NABOZeSTc2omqGXgPmsrHwHmgxCZrrOMzO9jVOaHqX1k1fSivISjNNwaSo%2bSYAaNg1yqJX1xZeCzq0CFW%2b54tU%2fyBc6NuZFm3p860DbN6GO%2ffgghX4cBO%2b3RBTfuPjMMcFxHhXkSPx9SlpSh4mN8tOSrYmbrWTNftGCVs3hm4dgscMEQZRHLgqZm4Xndywi50CSzQH%2bRFjEse5WJJBxu90B\"\r\n}", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestrg8498", - "sdktestvault6409" + "sdktestrg8473", + "sdktestvault1764" ], "KeyVaultManagementListDeletedVaults": [ - "sdktestvault873", - "sdktestvault1924", - "sdktestvault4530" + "sdktestvault2417", + "sdktestvault7075", + "sdktestvault8210" ] }, "Variables": { - "SubscriptionId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "ObjectId": "0c6d2fa6-74ce-473f-9c16-2c6e316ea845", - "SubId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", - "ApplicationId": "9750cd83-8dca-42dc-8998-4a6aa304bd5b" + "ObjectId": "0df1a52f-0f10-4c0f-88bd-5c3260deb0a5", + "SubId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "ApplicationId": "f47b6341-45ff-4324-82ba-84cbae6fc3bc" } } \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListVaults.json b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListVaults.json index 2ee3501cb111..5e112398f9f6 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListVaults.json +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementListVaults.json @@ -1,103 +1,94 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11b22a7c-b195-49cd-86d7-aefe2a40477d" + "7470931d-49f4-41b9-be5b-093d405045fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/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 ],\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 \"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 ],\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 },\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 ],\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 },\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 },\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 },\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 ],\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\",\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 },\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 ],\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/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 ],\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 ],\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:00:14 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "a8969832-d85b-4eed-a641-07d0f909a264" + "31c3693d-cf62-4d3b-bc15-0ac593c9b1ef" ], "x-ms-correlation-request-id": [ - "a8969832-d85b-4eed-a641-07d0f909a264" + "31c3693d-cf62-4d3b-bc15-0ac593c9b1ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180014Z:a8969832-d85b-4eed-a641-07d0f909a264" + "SOUTHEASTASIA:20191202T020534Z:31c3693d-cf62-4d3b-bc15-0ac593c9b1ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:05:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5560" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/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 \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\": \"vaults/eventGridFilters\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourcegroups/sdktestrg7620?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzc2MjA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/sdktestrg2371?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzIzNzE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "147602b0-830f-4100-a1b2-ba62f3f2ebe0" + "a5e4c368-44ec-4240-a9ef-7b5fc817736a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620\",\r\n \"name\": \"sdktestrg7620\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "187" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:00:16 GMT" - ], "Pragma": [ "no-cache" ], @@ -105,74 +96,73 @@ "1199" ], "x-ms-request-id": [ - "95919a11-1feb-471a-83ea-5ac8a9c21095" + "05f6909b-0a53-4446-8cd6-65092e1b257a" ], "x-ms-correlation-request-id": [ - "95919a11-1feb-471a-83ea-5ac8a9c21095" + "05f6909b-0a53-4446-8cd6-65092e1b257a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180016Z:95919a11-1feb-471a-83ea-5ac8a9c21095" + "SOUTHEASTASIA:20191202T020539Z:05f6909b-0a53-4446-8cd6-65092e1b257a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:05:39 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371\",\r\n \"name\": \"sdktestrg2371\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7039?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzAzOT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzkwMz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1091" - ], "x-ms-client-request-id": [ - "a0d3d967-7da2-49e6-88e5-65d914d6665b" + "7229a0a2-5ec9-422c-a229-4067581a887e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7039\",\r\n \"name\": \"sdktestvault7039\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7039.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1090" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:00:18 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "cff9d359-5fdb-4e73-af57-30a185368ce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -189,57 +182,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ - "2c298422-bbe5-49e2-87f7-c5457fa00340" - ], "x-ms-correlation-request-id": [ - "2c298422-bbe5-49e2-87f7-c5457fa00340" + "046ba05f-8265-4cb7-8eef-2c1ed6720f9f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180019Z:2c298422-bbe5-49e2-87f7-c5457fa00340" + "SOUTHEASTASIA:20191202T020551Z:046ba05f-8265-4cb7-8eef-2c1ed6720f9f" + ], + "Date": [ + "Mon, 02 Dec 2019 02:05:50 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903\",\r\n \"name\": \"sdktestvault3903\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3903.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7039?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzAzOT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzkwMz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7039\",\r\n \"name\": \"sdktestvault7039\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7039.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:00:49 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "6926a3dd-2534-4aa0-b75c-e810a6921594" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,6 +236,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -254,71 +246,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "aebcdd7a-592c-4b07-b91d-6e9234f4c76d" + "11999" ], "x-ms-correlation-request-id": [ - "aebcdd7a-592c-4b07-b91d-6e9234f4c76d" + "bafe5b3c-3c62-48ee-a01f-8daba7f0d055" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180049Z:aebcdd7a-592c-4b07-b91d-6e9234f4c76d" + "SOUTHEASTASIA:20191202T020621Z:bafe5b3c-3c62-48ee-a01f-8daba7f0d055" + ], + "Date": [ + "Mon, 02 Dec 2019 02:06:21 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903\",\r\n \"name\": \"sdktestvault3903\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3903.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault3882?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzg4Mj9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1091" - ], "x-ms-client-request-id": [ - "13e02260-21c2-4f49-9467-9b4e514e9a0a" + "a46284ab-0211-4434-8a0c-d17e8a6be36e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault3882\",\r\n \"name\": \"sdktestvault3882\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault3882.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1090" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:00:52 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "3b853350-ee41-44d5-ad5d-6166fe9eb491" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -326,6 +314,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -335,57 +326,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ - "5e360afb-bfe0-4e4d-9fd4-3347d49ec132" - ], "x-ms-correlation-request-id": [ - "5e360afb-bfe0-4e4d-9fd4-3347d49ec132" + "5f042c24-d839-4828-bf35-6d16f9d1dcd2" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180052Z:5e360afb-bfe0-4e4d-9fd4-3347d49ec132" + "SOUTHEASTASIA:20191202T020626Z:5f042c24-d839-4828-bf35-6d16f9d1dcd2" + ], + "Date": [ + "Mon, 02 Dec 2019 02:06:26 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201\",\r\n \"name\": \"sdktestvault4201\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4201.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault3882?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzg4Mj9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault3882\",\r\n \"name\": \"sdktestvault3882\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault3882.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:22 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "7cacc6fd-1558-4295-a1d3-e08a7aec11cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -393,78 +380,77 @@ "X-Content-Type-Options": [ "nosniff" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "0f91fa4f-ec93-4d3b-8108-76a2c0ee52c1" - ], "x-ms-correlation-request-id": [ - "0f91fa4f-ec93-4d3b-8108-76a2c0ee52c1" + "e4c6732e-ddfa-4e28-ad4c-a07c4d7990f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180123Z:0f91fa4f-ec93-4d3b-8108-76a2c0ee52c1" + "SOUTHEASTASIA:20191202T020656Z:e4c6732e-ddfa-4e28-ad4c-a07c4d7990f0" + ], + "Date": [ + "Mon, 02 Dec 2019 02:06:56 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201\",\r\n \"name\": \"sdktestvault4201\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4201.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7288?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzI4OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0OTAxOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1091" - ], "x-ms-client-request-id": [ - "9160454f-673e-41c9-8fc1-da21487defbe" + "73034bae-617a-48bb-82fb-2f033552f978" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7288\",\r\n \"name\": \"sdktestvault7288\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7288.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1090" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:26 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "f651f0b5-892a-45dd-ac37-51ad749dc471" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -472,6 +458,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -481,57 +470,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ - "9942873e-aaaa-4743-b405-943cf093ba4f" - ], "x-ms-correlation-request-id": [ - "9942873e-aaaa-4743-b405-943cf093ba4f" + "d748f739-8d67-4b47-89f1-bed26201abae" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180126Z:9942873e-aaaa-4743-b405-943cf093ba4f" + "SOUTHEASTASIA:20191202T020701Z:d748f739-8d67-4b47-89f1-bed26201abae" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:01 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018\",\r\n \"name\": \"sdktestvault9018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault9018.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7288?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzI4OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0OTAxOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7288\",\r\n \"name\": \"sdktestvault7288\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7288.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:55 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "c8ea6d7c-3065-4f4f-839f-46838cd7e12a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -539,6 +524,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -546,65 +534,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "753ca885-62f2-4cca-8da9-b26553a37c3d" + "11997" ], "x-ms-correlation-request-id": [ - "753ca885-62f2-4cca-8da9-b26553a37c3d" + "bd2bb5de-c3c6-40a4-b9b5-5e45ea674ec6" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180156Z:753ca885-62f2-4cca-8da9-b26553a37c3d" + "SOUTHEASTASIA:20191202T020732Z:bd2bb5de-c3c6-40a4-b9b5-5e45ea674ec6" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:32 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018\",\r\n \"name\": \"sdktestvault9018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault9018.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHM/JHRvcD0yJmFwaS12ZXJzaW9uPTIwMTgtMDItMTQ=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHM/JHRvcD0yJmFwaS12ZXJzaW9uPTIwMTktMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89b1edde-17e1-4be1-9136-9ffbcf1beeaf" + "7e1169b8-c45d-4800-b41d-5f625b1a41f4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault3882\",\r\n \"name\": \"sdktestvault3882\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault3882.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7039\",\r\n \"name\": \"sdktestvault7039\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7039.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7288\",\r\n \"name\": \"sdktestvault7288\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7288.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2018-02-14&$skiptoken=c2RrdGVzdHZhdWx0NzI4OA==\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:56 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "d7688adc-4d3a-4d43-a1af-2115817921d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -612,6 +596,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -619,65 +606,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "0b67ef2a-11c5-4d85-b2bc-80ec4a002835" + "11996" ], "x-ms-correlation-request-id": [ - "0b67ef2a-11c5-4d85-b2bc-80ec4a002835" + "50bd81ca-add5-45d1-ba5a-f2d121cc9e6e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180157Z:0b67ef2a-11c5-4d85-b2bc-80ec4a002835" + "SOUTHEASTASIA:20191202T020733Z:50bd81ca-add5-45d1-ba5a-f2d121cc9e6e" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:33 GMT" + ], + "Content-Length": [ + "3118" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903\",\r\n \"name\": \"sdktestvault3903\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3903.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201\",\r\n \"name\": \"sdktestvault4201\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4201.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018\",\r\n \"name\": \"sdktestvault9018\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault9018.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2019-09-01&$skiptoken=c2RrdGVzdHZhdWx0OTAxOA==\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2018-02-14&$skiptoken=c2RrdGVzdHZhdWx0NzI4OA==", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHM/JHRvcD0yJmFwaS12ZXJzaW9uPTIwMTgtMDItMTQmJHNraXB0b2tlbj1jMlJyZEdWemRIWmhkV3gwTnpJNE9BPT0=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults?$top=2&api-version=2019-09-01&$skiptoken=c2RrdGVzdHZhdWx0OTAxOA==", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHM/JHRvcD0yJmFwaS12ZXJzaW9uPTIwMTktMDktMDEmJHNraXB0b2tlbj1jMlJyZEdWemRIWmhkV3gwT1RBeE9BPT0=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7803d845-3ac5-40b3-90e8-f7d48a69711c" + "adf23463-9b8a-41ac-9aff-0bba21329b81" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:56 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "6af44b69-f66c-479d-8a2b-ef44f1e89f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -685,6 +668,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -692,117 +678,121 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-request-id": [ - "b7c68bd8-3bca-43a3-a991-5b0e9b0fd135" + "11995" ], "x-ms-correlation-request-id": [ - "b7c68bd8-3bca-43a3-a991-5b0e9b0fd135" + "4139af58-a3c6-4854-8c1f-4a4c00ebb445" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180157Z:b7c68bd8-3bca-43a3-a991-5b0e9b0fd135" + "SOUTHEASTASIA:20191202T020733Z:4139af58-a3c6-4854-8c1f-4a4c00ebb445" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:33 GMT" + ], + "Content-Length": [ + "12" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&$top=2&api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJTI3TWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJTI3JiR0b3A9MiZhcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&$top=2&api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJTI3TWljcm9zb2Z0LktleVZhdWx0JTJGdmF1bHRzJTI3JiR0b3A9MiZhcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e875bfe-6ae8-4bc1-8cb6-47cd01b4cb97" + "ef3f206d-9910-4ae8-bdf8-aad43f775aeb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/azkv-pytest/providers/Microsoft.KeyVault/vaults/pytest-shared-vault\",\r\n \"name\": \"pytest-shared-vault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/azure-key-vault-samples/providers/Microsoft.KeyVault/vaults/vault-acid-vast-94093\",\r\n \"name\": \"vault-acid-vast-94093\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2fvaults%27&%24top=2&api-version=2015-11-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IVEwTTJNVGMtIiwibmV4dFJvd0tleSI6IjEhMTgwIU5rUTRSVEU1UXpJelFUWXdORGd4UmpoRlFrSXhNVGhFUXpNd01EZEROVVJmVkVkT1RDMU5TVU5TVDFOUFJsUTZNa1ZMUlZsV1FWVk1WRG95UmxaQlZVeFVVeTFCV2xWU1JUb3lSRXRGV1RveVJGWkJWVXhVT2pKRVUwRk5VRXhGVXkxV1FWVk1WRG95UkVGRVJWQlVPakpFVUZKSlJFVTZNa1F3TXpVeU5DMVhSVk5VVlZNLSJ9\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:56 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11994" ], "x-ms-request-id": [ - "1db55f07-8328-4494-8a7f-8ee1f8cbd34c" + "1ea3adf4-4756-4c2c-a549-97f3ab6f2e80" ], "x-ms-correlation-request-id": [ - "1db55f07-8328-4494-8a7f-8ee1f8cbd34c" + "1ea3adf4-4756-4c2c-a549-97f3ab6f2e80" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180157Z:1db55f07-8328-4494-8a7f-8ee1f8cbd34c" + "SOUTHEASTASIA:20191202T020733Z:1ea3adf4-4756-4c2c-a549-97f3ab6f2e80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1080" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903\",\r\n \"name\": \"sdktestvault3903\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201\",\r\n \"name\": \"sdktestvault4201\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2fvaults%27&%24top=2&api-version=2015-11-01&%24skiptoken=eyJuZXh0UGFydGl0aW9uS2V5IjoiMSE4IVJEUTRPREUtIiwibmV4dFJvd0tleSI6IjEhMTUyIVF6bERRa1E1TWpCRE1EQkROREkzUXpnMU1rSTRRVUZHTXpoQ1FVUkJSVUpmVkVkT1RDMU5TVU5TVDFOUFJsUTZNa1ZMUlZsV1FWVk1WRG95UmxaQlZVeFVVeTFUUkV0VVJWTlVVa2N5TXpjeExWTkVTMVJGVTFSV1FWVk1WRGt3TVRndFRrOVNWRWhEUlU1VVVrRk1WVk0tIn0%3d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7039?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzAzOT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault3903?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzkwMz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33575039-5ff6-453e-8504-8227b8dee95a" + "5767896c-0e2a-4098-bbde-da0b4be41185" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:01:59 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "009c2a2c-3ecb-4df3-87a3-dd074f66e481" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,6 +800,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -819,57 +812,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ - "f2c3dc94-86d0-48b7-a35f-f146b0efc56d" - ], "x-ms-correlation-request-id": [ - "f2c3dc94-86d0-48b7-a35f-f146b0efc56d" + "47f8a778-8762-4c69-b1ff-f241006188eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180200Z:f2c3dc94-86d0-48b7-a35f-f146b0efc56d" + "SOUTHEASTASIA:20191202T020737Z:47f8a778-8762-4c69-b1ff-f241006188eb" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:37 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault3882?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzg4Mj9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault4201?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDIwMT9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a671a217-c1dd-4028-a9af-517c6bb0fab8" + "5f9d7fa9-7e89-4a16-97ae-f8edc4cca398" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:00 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "b9e2021e-2345-4d80-a5a1-ae11dfc90d1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -877,6 +869,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -886,57 +881,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ - "f3f0492a-e80e-487d-9802-03baecb47db5" - ], "x-ms-correlation-request-id": [ - "f3f0492a-e80e-487d-9802-03baecb47db5" + "02dff6ef-a2f9-4ec1-b96d-c6b55b162396" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180201Z:f3f0492a-e80e-487d-9802-03baecb47db5" + "SOUTHEASTASIA:20191202T020740Z:02dff6ef-a2f9-4ec1-b96d-c6b55b162396" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg7620/providers/Microsoft.KeyVault/vaults/sdktestvault7288?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzc2MjAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NzI4OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg2371/providers/Microsoft.KeyVault/vaults/sdktestvault9018?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzIzNzEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0OTAxOD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fa2ad9b-8fa7-408a-92af-12dfb3cd1797" + "07afefa6-69ed-4e68-a194-c750144cb889" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:03 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "c2190862-8988-4849-b2d4-683be351df82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -944,6 +938,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -953,35 +950,42 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ - "328b9e31-b603-4d0a-8a1d-a151609c309e" - ], "x-ms-correlation-request-id": [ - "328b9e31-b603-4d0a-8a1d-a151609c309e" + "fdae92d1-30e0-41b5-b01a-94c7f81d5097" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180204Z:328b9e31-b603-4d0a-8a1d-a151609c309e" + "SOUTHEASTASIA:20191202T020744Z:fdae92d1-30e0-41b5-b01a-94c7f81d5097" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:43 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestrg7620", - "sdktestvault656" + "sdktestrg2371", + "sdktestvault7410" ], "KeyVaultManagementListVaults": [ - "sdktestvault7039", - "sdktestvault3882", - "sdktestvault7288" + "sdktestvault3903", + "sdktestvault4201", + "sdktestvault9018" ] }, "Variables": { - "SubscriptionId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "ObjectId": "0c6d2fa6-74ce-473f-9c16-2c6e316ea845", - "SubId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", - "ApplicationId": "552f1857-ceb0-4479-b801-80285bd4cc0a" + "ObjectId": "0df1a52f-0f10-4c0f-88bd-5c3260deb0a5", + "SubId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "ApplicationId": "d030d741-1765-4972-85b3-b295a7a6f43b" } } \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json index 446b0c2e27a5..f5b7e849ecea 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementRecoverDeletedVault.json @@ -1,103 +1,94 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04eea393-57b6-4928-b4f5-42a613fce7c6" + "aedc7353-877b-4c3f-9c02-a289c1b157c8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/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 ],\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 \"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 ],\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 },\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 ],\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 },\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 },\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 },\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 ],\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\",\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 },\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 ],\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/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 ],\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 ],\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:14 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "4dd1ec80-0c93-46ba-b3b2-97892d2512a7" + "4117215b-9d1a-4d3d-b57d-318cef93b431" ], "x-ms-correlation-request-id": [ - "4dd1ec80-0c93-46ba-b3b2-97892d2512a7" + "4117215b-9d1a-4d3d-b57d-318cef93b431" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180215Z:4dd1ec80-0c93-46ba-b3b2-97892d2512a7" + "SOUTHEASTASIA:20191202T020752Z:4117215b-9d1a-4d3d-b57d-318cef93b431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5560" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/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 \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\": \"vaults/eventGridFilters\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourcegroups/sdktestrg1921?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzE5MjE/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/sdktestrg7090?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzcwOTA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "203a938b-e3bc-4b67-9e1b-2418afe6e0c4" + "400ea2c6-d4ab-4dda-9e73-14240169e75f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921\",\r\n \"name\": \"sdktestrg1921\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "187" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:16 GMT" - ], "Pragma": [ "no-cache" ], @@ -105,74 +96,73 @@ "1199" ], "x-ms-request-id": [ - "ddd920b7-3145-4982-96d5-6124257b603a" + "f79215b9-c0a1-4929-af9f-65cbbe8869cc" ], "x-ms-correlation-request-id": [ - "ddd920b7-3145-4982-96d5-6124257b603a" + "f79215b9-c0a1-4929-af9f-65cbbe8869cc" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180216Z:ddd920b7-3145-4982-96d5-6124257b603a" + "SOUTHEASTASIA:20191202T020757Z:f79215b9-c0a1-4929-af9f-65cbbe8869cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:07:56 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090\",\r\n \"name\": \"sdktestrg7090\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1122" - ], "x-ms-client-request-id": [ - "06c08f83-9d32-4a2b-ab6a-2655fd8863f4" + "8edb07a9-54cc-44b2-842e-c4e403cf6c1f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4698.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1121" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:19 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "faa44c1b-efbe-4c2e-a940-ed031defb8eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -189,69 +182,65 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ - "165aad5a-8275-4dca-a832-fb90af55d217" - ], "x-ms-correlation-request-id": [ - "165aad5a-8275-4dca-a832-fb90af55d217" + "6c0df068-cc54-481d-9ce7-80ff81482fee" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180219Z:165aad5a-8275-4dca-a832-fb90af55d217" + "SOUTHEASTASIA:20191202T020808Z:6c0df068-cc54-481d-9ce7-80ff81482fee" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:07 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5714.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1122" - ], "x-ms-client-request-id": [ - "08278642-a378-45db-998d-a3b80cc9fb3f" + "e24970a1-6b23-44fe-b40b-fd81eb1ef155" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4698.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1121" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:53 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "a92d6b36-f64a-4285-bd3d-105b9614b141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,6 +248,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -268,69 +260,65 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], - "x-ms-request-id": [ - "0f95a473-2e5c-4cac-a5cd-5a7e0b9c74f2" - ], "x-ms-correlation-request-id": [ - "0f95a473-2e5c-4cac-a5cd-5a7e0b9c74f2" + "bb2b701b-070b-4d2a-bc60-92410547f559" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180253Z:0f95a473-2e5c-4cac-a5cd-5a7e0b9c74f2" + "SOUTHEASTASIA:20191202T020846Z:bb2b701b-070b-4d2a-bc60-92410547f559" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:46 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5714.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"createMode\": \"recover\"\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "306" - ], "x-ms-client-request-id": [ - "fcc8a2b4-9702-4d9a-995d-f5ddc99c8090" + "2049a3ee-f8a3-4ead-a326-3e4c2f40fb22" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4698.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "306" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:55 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "2383ac04-f769-45b0-9d7e-f9d162887221" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -338,6 +326,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -347,57 +338,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], - "x-ms-request-id": [ - "3bcbc760-7b09-47d1-9db1-f85894184dc4" - ], "x-ms-correlation-request-id": [ - "3bcbc760-7b09-47d1-9db1-f85894184dc4" + "5a83f7bf-bb14-48b6-9451-77d35987592e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180255Z:3bcbc760-7b09-47d1-9db1-f85894184dc4" + "SOUTHEASTASIA:20191202T020853Z:5a83f7bf-bb14-48b6-9451-77d35987592e" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:53 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5714.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4698.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:49 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "5493f775-8d89-40ea-8a62-17bc951d143f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -405,6 +392,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -412,54 +402,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "6a45dac5-6376-4822-94c4-9531b5a917b6" + "11999" ], "x-ms-correlation-request-id": [ - "6a45dac5-6376-4822-94c4-9531b5a917b6" + "93b91f10-a24e-45f4-8886-03138a5d9fc4" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180249Z:6a45dac5-6376-4822-94c4-9531b5a917b6" + "SOUTHEASTASIA:20191202T020838Z:93b91f10-a24e-45f4-8886-03138a5d9fc4" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:37 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5714.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45648f81-0639-47eb-8c4c-9cdd851920b9" + "9ea74d48-d2ee-42f6-a00d-a5106c224a81" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault4698' under resource group 'sdktestrg1921' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "159" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:50 GMT" - ], "Pragma": [ "no-cache" ], @@ -467,68 +456,67 @@ "gateway" ], "x-ms-request-id": [ - "642b6e5d-1ec1-4f72-bab6-e6767fbc208c" + "980748f1-55c5-4499-aa22-ae599950827b" ], "x-ms-correlation-request-id": [ - "642b6e5d-1ec1-4f72-bab6-e6767fbc208c" + "980748f1-55c5-4499-aa22-ae599950827b" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180251Z:642b6e5d-1ec1-4f72-bab6-e6767fbc208c" + "SOUTHEASTASIA:20191202T020842Z:980748f1-55c5-4499-aa22-ae599950827b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "159" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault5714' under resource group 'sdktestrg7090' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "668954c6-1281-4540-969f-f935a3099915" + "9ba90f59-c30e-4d01-9438-ccd212b5eb7d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4698.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:53 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "34f731e0-bd1b-4b71-89aa-53f9863a2258" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -536,6 +524,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -543,65 +534,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "6200e8c1-f196-4c99-82d3-abe728824a69" + "11997" ], "x-ms-correlation-request-id": [ - "6200e8c1-f196-4c99-82d3-abe728824a69" + "e0ba8962-26d7-47d7-9671-46dc2da52ce9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180253Z:6200e8c1-f196-4c99-82d3-abe728824a69" + "SOUTHEASTASIA:20191202T020846Z:e0ba8962-26d7-47d7-9671-46dc2da52ce9" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:46 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5714.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b854ffb4-aee6-4314-8087-babd5ac74505" + "c8f1ccf1-5f6b-475a-834f-1c3077b63792" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698\",\r\n \"name\": \"sdktestvault4698\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault4698.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:55 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "02a433b0-9145-4ab7-af75-5e78e5092926" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -609,6 +596,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -616,59 +606,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "6405daaa-a54a-458d-ba72-c17be2e9782e" + "11996" ], "x-ms-correlation-request-id": [ - "6405daaa-a54a-458d-ba72-c17be2e9782e" + "5bda89ac-82ed-4f6f-a231-9094f800594a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180255Z:6405daaa-a54a-458d-ba72-c17be2e9782e" + "SOUTHEASTASIA:20191202T020853Z:5bda89ac-82ed-4f6f-a231-9094f800594a" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:53 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714\",\r\n \"name\": \"sdktestvault5714\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault5714.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "682f5b9d-5584-43aa-b7e4-4931599df252" + "17837b5e-f695-4094-a985-de80f9d8bfd7" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "2aac7896-f5a9-4c9a-9ee9-391857fa8e23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -676,6 +668,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -685,57 +680,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ - "b9eb8e25-859d-44b6-a6f5-dea29fcb7bd7" - ], "x-ms-correlation-request-id": [ - "b9eb8e25-859d-44b6-a6f5-dea29fcb7bd7" + "5070dc8e-7c1a-4ecf-83e9-8c5a14ed825f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180251Z:b9eb8e25-859d-44b6-a6f5-dea29fcb7bd7" + "SOUTHEASTASIA:20191202T020841Z:5070dc8e-7c1a-4ecf-83e9-8c5a14ed825f" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:41 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9554a860-a1b3-40c4-9b67-325e4a92cf1f" + "5e17104e-95bf-4888-aa44-f60eb4027d7f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:54 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "1347fac5-94bf-4c20-bdcc-f85240ad51b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -743,6 +737,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -752,57 +749,56 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ - "f014e0b2-2bc5-4ea4-8712-91e43b3215f8" - ], "x-ms-correlation-request-id": [ - "f014e0b2-2bc5-4ea4-8712-91e43b3215f8" + "dd3d1da2-af24-4142-94f1-6597db98ff0e" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180254Z:f014e0b2-2bc5-4ea4-8712-91e43b3215f8" + "SOUTHEASTASIA:20191202T020850Z:dd3d1da2-af24-4142-94f1-6597db98ff0e" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1921/providers/Microsoft.KeyVault/vaults/sdktestvault4698?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjEvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NDY5OD9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg7090/providers/Microsoft.KeyVault/vaults/sdktestvault5714?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzcwOTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0NTcxND9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a86c31d7-0459-42ee-a8b3-d92c8ca31bb1" + "ed0e3657-dd45-41ed-9f92-ebed4274f805" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:02:56 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "d7371e07-3106-4ebd-a4de-4e1a0be00205" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -810,6 +806,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -819,30 +818,37 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14997" ], - "x-ms-request-id": [ - "59b7708a-d78e-4655-b59c-5f9b4619afc9" - ], "x-ms-correlation-request-id": [ - "59b7708a-d78e-4655-b59c-5f9b4619afc9" + "13ee200c-e5ae-4ab0-8edf-f1b57bafb416" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180256Z:59b7708a-d78e-4655-b59c-5f9b4619afc9" + "SOUTHEASTASIA:20191202T020856Z:13ee200c-e5ae-4ab0-8edf-f1b57bafb416" + ], + "Date": [ + "Mon, 02 Dec 2019 02:08:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestrg1921", - "sdktestvault4698" + "sdktestrg7090", + "sdktestvault5714" ] }, "Variables": { - "SubscriptionId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "ObjectId": "0c6d2fa6-74ce-473f-9c16-2c6e316ea845", - "SubId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", - "ApplicationId": "191aa2d3-c892-42eb-902f-9ab77b5f27bb" + "ObjectId": "0df1a52f-0f10-4c0f-88bd-5c3260deb0a5", + "SubId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "ApplicationId": "6194a562-4364-49b1-a52d-365c6b4d43a4" } } \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json index 0340db1aeb0a..848276bf6b2e 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultCreateUpdateDelete.json @@ -1,103 +1,94 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f57f0b10-ae5f-40b6-9f23-911b8f8c7e08" + "dc4d8516-ccc7-4b15-8dd7-515321b349bf" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/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 ],\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 \"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 ],\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 },\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 ],\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 },\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 },\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 },\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 ],\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\",\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 },\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 ],\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/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 ],\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 ],\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:13 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11993" ], "x-ms-request-id": [ - "1040c452-09d2-4d8e-bad0-66b3d294fde8" + "976f9c2f-a2d1-44fb-8a1e-8cd054191f7f" ], "x-ms-correlation-request-id": [ - "1040c452-09d2-4d8e-bad0-66b3d294fde8" + "976f9c2f-a2d1-44fb-8a1e-8cd054191f7f" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175914Z:1040c452-09d2-4d8e-bad0-66b3d294fde8" + "SOUTHEASTASIA:20191129T074125Z:976f9c2f-a2d1-44fb-8a1e-8cd054191f7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Fri, 29 Nov 2019 07:41:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5560" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/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 \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\": \"vaults/eventGridFilters\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourcegroups/sdktestrg5453?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzU0NTM/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/sdktestrg4718?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzQ3MTg/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "a548f2f7-193d-4e0f-8f77-e37c17dd65c8" + "d59677ef-b50a-428c-b414-e3545e125ae6" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453\",\r\n \"name\": \"sdktestrg5453\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "187" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:14 GMT" - ], "Pragma": [ "no-cache" ], @@ -105,74 +96,73 @@ "1199" ], "x-ms-request-id": [ - "0038133b-275e-4a34-8f55-643947028ca2" + "4749e126-ce61-415e-a30f-72fefc7f193a" ], "x-ms-correlation-request-id": [ - "0038133b-275e-4a34-8f55-643947028ca2" + "4749e126-ce61-415e-a30f-72fefc7f193a" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175915Z:0038133b-275e-4a34-8f55-643947028ca2" + "SOUTHEASTASIA:20191129T074130Z:4749e126-ce61-415e-a30f-72fefc7f193a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Fri, 29 Nov 2019 07:41:30 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718\",\r\n \"name\": \"sdktestrg4718\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzU0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzA0OT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ3MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzc5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1091" - ], "x-ms-client-request-id": [ - "39fdd69c-0de5-441e-9c93-5a419f7216ef" + "c9d522d5-8fb8-4ed7-b3d1-992ef6ac0e95" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049\",\r\n \"name\": \"sdktestvault3049\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault3049.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1090" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:18 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "11cefc4a-c3b1-468d-85ea-79ac81cabea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -187,71 +180,67 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "65d9fde1-a2fb-4366-b4d0-fdcabd67da31" + "1198" ], "x-ms-correlation-request-id": [ - "65d9fde1-a2fb-4366-b4d0-fdcabd67da31" + "29f53ed9-b696-4b1d-ab0b-4ac48d381272" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175919Z:65d9fde1-a2fb-4366-b4d0-fdcabd67da31" + "SOUTHEASTASIA:20191129T074138Z:29f53ed9-b696-4b1d-ab0b-4ac48d381272" + ], + "Date": [ + "Fri, 29 Nov 2019 07:41:38 GMT" + ], + "Content-Length": [ + "964" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798\",\r\n \"name\": \"sdktestvault3798\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3798.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzU0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzA0OT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ3MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzc5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"premium\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"get\",\r\n \"regenerateKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://sdktestvault3049.vault.azure.net/\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"premium\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"get\",\r\n \"regenerateKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"https://sdktestvault3798.vault.azure.net/\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1161" - ], "x-ms-client-request-id": [ - "04a0d66e-8c64-48fe-9be7-3c29788c240b" + "59d94b0f-b250-44a0-bef2-e8e006b6322b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049\",\r\n \"name\": \"sdktestvault3049\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"get\",\r\n \"regenerateKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault3049.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1191" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:50 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "9e3f471b-e81d-4c1f-9708-5b45a278b1f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -259,6 +248,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -266,59 +258,55 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "2fba57a7-c3c1-4ecc-96c5-656ed42b7eae" + "1197" ], "x-ms-correlation-request-id": [ - "2fba57a7-c3c1-4ecc-96c5-656ed42b7eae" + "95a62fb5-5bc5-48e4-8805-a5be0f02f5ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175950Z:2fba57a7-c3c1-4ecc-96c5-656ed42b7eae" + "SOUTHEASTASIA:20191129T074209Z:95a62fb5-5bc5-48e4-8805-a5be0f02f5ff" + ], + "Date": [ + "Fri, 29 Nov 2019 07:42:08 GMT" + ], + "Content-Length": [ + "966" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798\",\r\n \"name\": \"sdktestvault3798\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"get\",\r\n \"regenerateKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3798.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzU0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzA0OT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ3MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzc5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049\",\r\n \"name\": \"sdktestvault3049\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault3049.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:49 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "2dd49164-7d80-4aae-8b36-918cc0af7018" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -326,6 +314,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -333,65 +324,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "61786b16-b68a-43ba-ba92-50b6c9294d93" + "11998" ], "x-ms-correlation-request-id": [ - "61786b16-b68a-43ba-ba92-50b6c9294d93" + "218fa91b-c86b-4f9f-adb0-7f64911c44de" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175949Z:61786b16-b68a-43ba-ba92-50b6c9294d93" + "SOUTHEASTASIA:20191129T074208Z:218fa91b-c86b-4f9f-adb0-7f64911c44de" + ], + "Date": [ + "Fri, 29 Nov 2019 07:42:08 GMT" + ], + "Content-Length": [ + "960" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798\",\r\n \"name\": \"sdktestvault3798\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3798.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzU0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzA0OT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ3MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzc5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d9008de-a8d7-4848-87b6-2ac76de38d72" + "dc8f7196-0c06-4647-b083-426d49a14b7f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049\",\r\n \"name\": \"sdktestvault3049\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"get\",\r\n \"regenerateKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"vaultUri\": \"https://sdktestvault3049.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:50 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "470be873-d7d2-4f66-af54-a7273d62d649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -399,6 +386,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -406,54 +396,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "dcdc1eeb-8b66-49e7-82dd-cf152bd6403a" + "11997" ], "x-ms-correlation-request-id": [ - "dcdc1eeb-8b66-49e7-82dd-cf152bd6403a" + "bc349049-3e4b-4d2d-96d2-4f210708e7d5" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175950Z:dcdc1eeb-8b66-49e7-82dd-cf152bd6403a" + "SOUTHEASTASIA:20191129T074209Z:bc349049-3e4b-4d2d-96d2-4f210708e7d5" + ], + "Date": [ + "Fri, 29 Nov 2019 07:42:09 GMT" + ], + "Content-Length": [ + "966" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798\",\r\n \"name\": \"sdktestvault3798\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"premium\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"permissions\": {\r\n \"secrets\": [\r\n \"get\",\r\n \"set\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"get\",\r\n \"regenerateKey\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault3798.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzU0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzA0OT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ3MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzc5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b1d1538-69cb-432e-b52f-f381d39fd4b6" + "cab764a9-7777-4b4b-bf9b-6ca65fac525e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault3049' under resource group 'sdktestrg5453' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "159" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:52 GMT" - ], "Pragma": [ "no-cache" ], @@ -461,62 +450,67 @@ "gateway" ], "x-ms-request-id": [ - "cc03de8f-ed58-4914-b853-7b3ceca7fcd0" + "a5b7cd38-df94-4349-9b9c-e5a1ccbf8067" ], "x-ms-correlation-request-id": [ - "cc03de8f-ed58-4914-b853-7b3ceca7fcd0" + "a5b7cd38-df94-4349-9b9c-e5a1ccbf8067" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175952Z:cc03de8f-ed58-4914-b853-7b3ceca7fcd0" + "SOUTHEASTASIA:20191129T074214Z:a5b7cd38-df94-4349-9b9c-e5a1ccbf8067" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Fri, 29 Nov 2019 07:42:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "159" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault3798' under resource group 'sdktestrg4718' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg5453/providers/Microsoft.KeyVault/vaults/sdktestvault3049?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzU0NTMvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MzA0OT9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg4718/providers/Microsoft.KeyVault/vaults/sdktestvault3798?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzQ3MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Mzc5OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6aff15f2-dfdd-4759-bc33-7eb1a866f2ab" + "f52ebd97-f4d3-449e-868f-c9c5da6fc73c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.3.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 17:59:52 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "6a822bb9-d6b5-4a9f-819f-72a33063d770" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -524,6 +518,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -531,32 +528,39 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "11ed3056-fc08-4115-a6fe-03a3d8f6c15e" + "14998" ], "x-ms-correlation-request-id": [ - "11ed3056-fc08-4115-a6fe-03a3d8f6c15e" + "1049494f-9dcb-46ee-af81-5dee8b15bfc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T175952Z:11ed3056-fc08-4115-a6fe-03a3d8f6c15e" + "SOUTHEASTASIA:20191129T074213Z:1049494f-9dcb-46ee-af81-5dee8b15bfc9" + ], + "Date": [ + "Fri, 29 Nov 2019 07:42:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestrg5453", - "sdktestvault3049" + "sdktestrg4718", + "sdktestvault3798" ] }, "Variables": { - "SubscriptionId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "ObjectId": "0c6d2fa6-74ce-473f-9c16-2c6e316ea845", - "SubId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", - "ApplicationId": "7efd5220-054e-487d-b21a-6c4e2493eb79" + "ObjectId": "0df1a52f-0f10-4c0f-88bd-5c3260deb0a5", + "SubId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "ApplicationId": "363f723f-18cd-4fba-aefb-17ce0c515d9c" } } \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json index 6f43b547e3a0..25e6be37aeb8 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/SessionRecords/VaultOperationsTest/KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy.json @@ -1,178 +1,168 @@ { "Entries": [ { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/providers/Microsoft.KeyVault?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cf9b73d-afdb-4644-9ece-9bee54d73564" + "32c5d2f1-de2b-4263-8539-4cc8b37e89ee" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/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 ],\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 \"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 ],\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 },\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 ],\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 },\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 },\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 },\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 ],\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\",\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 },\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 ],\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/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 ],\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 ],\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 \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:11 GMT" - ], "Pragma": [ "no-cache" ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11998" ], "x-ms-request-id": [ - "94732b32-ad47-463a-881d-19416b66d727" + "81485522-054f-4b94-a699-df3682b77bac" ], "x-ms-correlation-request-id": [ - "94732b32-ad47-463a-881d-19416b66d727" + "81485522-054f-4b94-a699-df3682b77bac" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180612Z:94732b32-ad47-463a-881d-19416b66d727" + "SOUTHEASTASIA:20191202T021332Z:81485522-054f-4b94-a699-df3682b77bac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:13:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "5560" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/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 \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 \"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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 },\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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/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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\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\": \"vaults/eventGridFilters\",\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 ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourcegroups/sdktestrg1925?api-version=2016-02-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzE5MjU/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/sdktestrg6410?api-version=2016-02-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3Nka3Rlc3RyZzY0MTA/YXBpLXZlcnNpb249MjAxNi0wMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"North Central US\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "38" - ], "x-ms-client-request-id": [ - "f1543979-2d83-4336-804b-f9b4d3d87ba5" + "74ce52bf-90e4-4a4a-8c13-8f56112ad3ea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.1.3.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925\",\r\n \"name\": \"sdktestrg1925\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "187" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "38" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:12 GMT" - ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "c12bdb46-630c-4ff7-9b62-ec8bb5588b22" + "a8502621-b298-4047-9330-b8e590d961c3" ], "x-ms-correlation-request-id": [ - "c12bdb46-630c-4ff7-9b62-ec8bb5588b22" + "a8502621-b298-4047-9330-b8e590d961c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180613Z:c12bdb46-630c-4ff7-9b62-ec8bb5588b22" + "SOUTHEASTASIA:20191202T021337Z:a8502621-b298-4047-9330-b8e590d961c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:13:36 GMT" + ], + "Content-Length": [ + "187" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410\",\r\n \"name\": \"sdktestrg6410\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Nzc5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY0MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTM1Mz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"applicationId\": \"cf4c0515-bc50-4524-bf24-69725cd66c91\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"36eb1c7c-7508-489b-853f-811dcf28c16f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\r\n \"all\"\r\n ]\r\n }\r\n }\r\n ],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": true,\r\n \"enabledForDiskEncryption\": true,\r\n \"enabledForTemplateDeployment\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1157" - ], "x-ms-client-request-id": [ - "7637063b-4035-4bb7-a6f9-5afad9448ec6" + "0c6a415d-37f5-4bc4-bae4-231e76261aaa" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793\",\r\n \"name\": \"sdktestvault7793\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"applicationId\": \"cf4c0515-bc50-4524-bf24-69725cd66c91\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7793.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", - "ResponseHeaders": { + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" - ], + "Content-Length": [ + "1156" + ] + }, + "ResponseHeaders": { "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:16 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "c23e45d7-a5a6-416c-bbf9-f906bd2bbb7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -180,6 +170,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -189,57 +182,53 @@ "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ - "4c442f1c-52c2-45c4-a4c8-d0b199c8e9a6" - ], "x-ms-correlation-request-id": [ - "4c442f1c-52c2-45c4-a4c8-d0b199c8e9a6" + "c753053d-5290-4ee8-8ede-efe5dda38477" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180616Z:4c442f1c-52c2-45c4-a4c8-d0b199c8e9a6" + "SOUTHEASTASIA:20191202T021346Z:c753053d-5290-4ee8-8ede-efe5dda38477" + ], + "Date": [ + "Mon, 02 Dec 2019 02:13:46 GMT" + ], + "Content-Length": [ + "1019" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353\",\r\n \"name\": \"sdktestvault1353\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"36eb1c7c-7508-489b-853f-811dcf28c16f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault1353.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Nzc5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY0MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTM1Mz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793\",\r\n \"name\": \"sdktestvault7793\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"applicationId\": \"cf4c0515-bc50-4524-bf24-69725cd66c91\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7793.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:46 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "18627a65-8164-4f90-9214-f50931df2334" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -247,6 +236,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -254,65 +246,61 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "c6843623-3d6c-4502-82ce-e0762725a9c3" + "11999" ], "x-ms-correlation-request-id": [ - "c6843623-3d6c-4502-82ce-e0762725a9c3" + "be681308-94f7-48da-b17d-23f42e3350a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180647Z:c6843623-3d6c-4502-82ce-e0762725a9c3" + "SOUTHEASTASIA:20191202T021416Z:be681308-94f7-48da-b17d-23f42e3350a9" + ], + "Date": [ + "Mon, 02 Dec 2019 02:14:16 GMT" + ], + "Content-Length": [ + "1015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353\",\r\n \"name\": \"sdktestvault1353\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"36eb1c7c-7508-489b-853f-811dcf28c16f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault1353.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Nzc5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY0MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTM1Mz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffeab582-38ac-44e8-a680-b42f5f3ef992" + "c0944b53-7fc9-4ffe-8688-b9e4f9f34bb3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793\",\r\n \"name\": \"sdktestvault7793\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"10.0.0.0/24\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0c6d2fa6-74ce-473f-9c16-2c6e316ea845\",\r\n \"applicationId\": \"cf4c0515-bc50-4524-bf24-69725cd66c91\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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://sdktestvault7793.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:46 GMT" - ], "Pragma": [ "no-cache" ], - "Transfer-Encoding": [ - "chunked" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "Vary": [ - "Accept-Encoding" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "1dba1379-30ef-4334-b133-c3179839a11b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -320,6 +308,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -327,54 +318,53 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "85fb11c6-ec40-4802-8d08-5aac9bcc8551" + "11998" ], "x-ms-correlation-request-id": [ - "85fb11c6-ec40-4802-8d08-5aac9bcc8551" + "6f9edf21-936c-45f3-8608-91545399b4e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180647Z:85fb11c6-ec40-4802-8d08-5aac9bcc8551" + "SOUTHEASTASIA:20191202T021417Z:6f9edf21-936c-45f3-8608-91545399b4e7" + ], + "Date": [ + "Mon, 02 Dec 2019 02:14:16 GMT" + ], + "Content-Length": [ + "1015" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353\",\r\n \"name\": \"sdktestvault1353\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"North Central US\",\r\n \"tags\": {\r\n \"tag1\": \"value1\",\r\n \"tag2\": \"value2\",\r\n \"tag3\": \"value3\"\r\n },\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 \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"1.2.3.4/32\"\r\n },\r\n {\r\n \"value\": \"1.0.0.0/25\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": []\r\n },\r\n \"accessPolicies\": [\r\n {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"objectId\": \"0df1a52f-0f10-4c0f-88bd-5c3260deb0a5\",\r\n \"applicationId\": \"36eb1c7c-7508-489b-853f-811dcf28c16f\",\r\n \"permissions\": {\r\n \"keys\": [\r\n \"all\"\r\n ],\r\n \"secrets\": [\r\n \"all\"\r\n ],\r\n \"certificates\": [\r\n \"all\"\r\n ],\r\n \"storage\": [\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 \"enableSoftDelete\": true,\r\n \"vaultUri\": \"https://sdktestvault1353.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Nzc5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY0MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTM1Mz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b640c83b-a8a8-4aad-a1c3-170d68943bf4" + "6fce3375-6004-465a-9117-0cc487c36e46" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault7793' under resource group 'sdktestrg1925' was not found.\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "159" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:51 GMT" - ], "Pragma": [ "no-cache" ], @@ -382,62 +372,67 @@ "gateway" ], "x-ms-request-id": [ - "f52f41cf-2370-42d5-aacd-4f8db7ea1f36" + "facb945e-51d2-4ec0-9a8b-d1dc6c46b065" ], "x-ms-correlation-request-id": [ - "f52f41cf-2370-42d5-aacd-4f8db7ea1f36" + "facb945e-51d2-4ec0-9a8b-d1dc6c46b065" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180651Z:f52f41cf-2370-42d5-aacd-4f8db7ea1f36" + "SOUTHEASTASIA:20191202T021421Z:facb945e-51d2-4ec0-9a8b-d1dc6c46b065" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" + ], + "Date": [ + "Mon, 02 Dec 2019 02:14:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "159" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/sdktestvault1353' under resource group 'sdktestrg6410' was not found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/6d8e19c2-3a60-481f-8ebb-118dc3007c5d/resourceGroups/sdktestrg1925/providers/Microsoft.KeyVault/vaults/sdktestvault7793?api-version=2018-02-14", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNmQ4ZTE5YzItM2E2MC00ODFmLThlYmItMTE4ZGMzMDA3YzVkL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzE5MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0Nzc5Mz9hcGktdmVyc2lvbj0yMDE4LTAyLTE0", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/sdktestrg6410/providers/Microsoft.KeyVault/vaults/sdktestvault1353?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3Nka3Rlc3RyZzY0MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5LZXlWYXVsdC92YXVsdHMvc2RrdGVzdHZhdWx0MTM1Mz9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9908098-f36d-4534-9226-0247e49a0d70" + "a5bb5a26-cb19-4644-abd3-a589c3f5c9c8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.26201.01", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/2.4.2.0" + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], "Cache-Control": [ "no-cache" ], - "Date": [ - "Tue, 26 Jun 2018 18:06:50 GMT" - ], "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0" - ], "x-ms-keyvault-service-version": [ - "1.0.0.220" + "1.1.0.261" + ], + "x-ms-request-id": [ + "2ab93c4c-b20b-4e9c-820f-5d8a150a425d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,6 +440,9 @@ "X-Content-Type-Options": [ "nosniff" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "X-AspNet-Version": [ "4.0.30319" ], @@ -454,30 +452,37 @@ "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ - "dd95ef84-5741-4575-a0fd-89c8d9a05fd3" - ], "x-ms-correlation-request-id": [ - "dd95ef84-5741-4575-a0fd-89c8d9a05fd3" + "4a20dabf-af40-477e-bc54-bac6e0802854" ], "x-ms-routing-request-id": [ - "WESTUS2:20180626T180651Z:dd95ef84-5741-4575-a0fd-89c8d9a05fd3" + "SOUTHEASTASIA:20191202T021421Z:4a20dabf-af40-477e-bc54-bac6e0802854" + ], + "Date": [ + "Mon, 02 Dec 2019 02:14:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 200 } ], "Names": { "Initialize": [ - "sdktestrg1925", - "sdktestvault7793" + "sdktestrg6410", + "sdktestvault1353" ] }, "Variables": { - "SubscriptionId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "ObjectId": "0c6d2fa6-74ce-473f-9c16-2c6e316ea845", - "SubId": "6d8e19c2-3a60-481f-8ebb-118dc3007c5d", - "ApplicationId": "cf4c0515-bc50-4524-bf24-69725cd66c91" + "ObjectId": "0df1a52f-0f10-4c0f-88bd-5c3260deb0a5", + "SubId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", + "ApplicationId": "36eb1c7c-7508-489b-853f-811dcf28c16f" } } \ No newline at end of file diff --git a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/VaultOperationsTest.cs b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/VaultOperationsTest.cs index 5cdb124d537f..507664977257 100644 --- a/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/VaultOperationsTest.cs +++ b/sdk/keyvault/Microsoft.Azure.Management.KeyVault/tests/VaultOperationsTest.cs @@ -47,7 +47,7 @@ public void KeyVaultManagementVaultCreateUpdateDelete() true, true, true, - null, + true, // enableSoftDelete defaults to true new[] { testBase.accPol }, testBase.vaultProperties.NetworkAcls, testBase.tags); @@ -82,7 +82,7 @@ public void KeyVaultManagementVaultCreateUpdateDelete() true, true, true, - null, + true, new[] { testBase.accPol }, testBase.vaultProperties.NetworkAcls, testBase.tags); @@ -102,7 +102,7 @@ public void KeyVaultManagementVaultCreateUpdateDelete() true, true, true, - null, + true, new[] { testBase.accPol }, testBase.vaultProperties.NetworkAcls, testBase.tags); @@ -121,6 +121,35 @@ public void KeyVaultManagementVaultCreateUpdateDelete() } } + [Fact] + public void CreateKeyVaultDisableSoftDelete() + { + using (MockContext context = MockContext.Start(this.GetType())) + { + var testBase = new KeyVaultTestBase(context); + testBase.accPol.ApplicationId = Guid.Parse(testBase.applicationId); + testBase.vaultProperties.EnableSoftDelete = false; // <-- disable soft delete + + var vault = testBase.client.Vaults.CreateOrUpdate( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName, + parameters: new VaultCreateOrUpdateParameters + { + Location = testBase.location, + Tags = testBase.tags, + Properties = testBase.vaultProperties + } + ); + + Assert.False(vault.Properties.EnableSoftDelete); + + // Delete + testBase.client.Vaults.Delete( + resourceGroupName: testBase.rgName, + vaultName: testBase.vaultName); + } + } + [Fact] public void KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy() { @@ -152,7 +181,7 @@ public void KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy() true, true, true, - null, + true, new[] { testBase.accPol }, testBase.tags); @@ -172,7 +201,7 @@ public void KeyVaultManagementVaultTestCompoundIdentityAccessControlPolicy() true, true, true, - null, + true, new[] { testBase.accPol }, testBase.tags);