diff --git a/eng/mgmt/mgmtmetadata/reservations_resource-manager.txt b/eng/mgmt/mgmtmetadata/reservations_resource-manager.txt new file mode 100644 index 0000000000000..4e0f61ddb48c6 --- /dev/null +++ b/eng/mgmt/mgmtmetadata/reservations_resource-manager.txt @@ -0,0 +1,14 @@ +Installing AutoRest version: latest +AutoRest installed successfully. +Commencing code generation +Generating CSharp code +Executing AutoRest command +cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/reservations/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\rd\azure-sdk-for-net\sdk +2019-08-29 18:21:06 UTC +Azure-rest-api-specs repository information +GitHub fork: Azure +Branch: master +Commit: 543e24fb91a603ac8395d767824ad6deddd1d20a +AutoRest information +Requested version: latest +Bootstrapper version: autorest@2.0.4283 diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/AzureReservationAPIClient.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/AzureReservationAPIClient.cs index 9e1eb1c0e28fb..ac89f41d888bc 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/AzureReservationAPIClient.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/AzureReservationAPIClient.cs @@ -72,14 +72,14 @@ public partial class AzureReservationAPIClient : ServiceClient - /// Gets the IReservationOrderOperations. + /// Gets the IReservationOperations. /// - public virtual IReservationOrderOperations ReservationOrder { get; private set; } + public virtual IReservationOperations Reservation { get; private set; } /// - /// Gets the IReservationOperations. + /// Gets the IReservationOrderOperations. /// - public virtual IReservationOperations Reservation { get; private set; } + public virtual IReservationOrderOperations ReservationOrder { get; private set; } /// /// Gets the IOperationOperations. @@ -327,8 +327,8 @@ public AzureReservationAPIClient(System.Uri baseUri, ServiceClientCredentials cr /// private void Initialize() { - ReservationOrder = new ReservationOrderOperations(this); Reservation = new ReservationOperations(this); + ReservationOrder = new ReservationOrderOperations(this); Operation = new OperationOperations(this); BaseUri = new System.Uri("https://management.azure.com"); ApiVersion = "2019-04-01"; diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IAzureReservationAPIClient.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IAzureReservationAPIClient.cs index 4d318e06981ca..13d1b104b1954 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IAzureReservationAPIClient.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IAzureReservationAPIClient.cs @@ -69,14 +69,14 @@ public partial interface IAzureReservationAPIClient : System.IDisposable /// - /// Gets the IReservationOrderOperations. + /// Gets the IReservationOperations. /// - IReservationOrderOperations ReservationOrder { get; } + IReservationOperations Reservation { get; } /// - /// Gets the IReservationOperations. + /// Gets the IReservationOrderOperations. /// - IReservationOperations Reservation { get; } + IReservationOrderOperations ReservationOrder { get; } /// /// Gets the IOperationOperations. diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IReservationOperations.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IReservationOperations.cs index 07966d444332f..867718e7ea1a4 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IReservationOperations.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/IReservationOperations.cs @@ -23,6 +23,37 @@ namespace Microsoft.Azure.Management.Reservations /// public partial interface IReservationOperations { + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + /// + /// 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> AvailableScopesWithHttpMessagesAsync(string reservationOrderId, string reservationId, IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Split the `Reservation`. /// @@ -118,6 +149,9 @@ public partial interface IReservationOperations /// /// Order Id of the reservation /// + /// + /// Supported value of this query is renewProperties + /// /// /// The headers that will be added to request. /// @@ -133,7 +167,7 @@ public partial interface IReservationOperations /// /// Thrown when a required parameter is null /// - Task> GetWithHttpMessagesAsync(string reservationId, string reservationOrderId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetWithHttpMessagesAsync(string reservationId, string reservationOrderId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Updates a `Reservation`. /// @@ -194,6 +228,37 @@ public partial interface IReservationOperations /// Task>> ListRevisionsWithHttpMessagesAsync(string reservationId, string reservationOrderId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + /// + /// 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> BeginAvailableScopesWithHttpMessagesAsync(string reservationOrderId, string reservationId, IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// /// Split the `Reservation`. /// /// diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Patch.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Patch.cs index 03e58a9113ac5..8302005f4f615 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Patch.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Patch.cs @@ -36,12 +36,14 @@ public Patch() /// Possible values include: 'On', /// 'Off' /// Name of the Reservation - public Patch(string appliedScopeType = default(string), IList appliedScopes = default(IList), string instanceFlexibility = default(string), string name = default(string)) + public Patch(string appliedScopeType = default(string), IList appliedScopes = default(IList), string instanceFlexibility = default(string), string name = default(string), bool? renew = default(bool?), PatchPropertiesRenewProperties renewProperties = default(PatchPropertiesRenewProperties)) { AppliedScopeType = appliedScopeType; AppliedScopes = appliedScopes; InstanceFlexibility = instanceFlexibility; Name = name; + Renew = renew; + RenewProperties = renewProperties; CustomInit(); } @@ -73,5 +75,15 @@ public Patch() [JsonProperty(PropertyName = "properties.name")] public string Name { get; set; } + /// + /// + [JsonProperty(PropertyName = "properties.renew")] + public bool? Renew { get; set; } + + /// + /// + [JsonProperty(PropertyName = "properties.renewProperties")] + public PatchPropertiesRenewProperties RenewProperties { get; set; } + } } diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PatchPropertiesRenewProperties.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PatchPropertiesRenewProperties.cs new file mode 100644 index 0000000000000..ebc18e794d3c8 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PatchPropertiesRenewProperties.cs @@ -0,0 +1,48 @@ +// +// 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.Reservations.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class PatchPropertiesRenewProperties + { + /// + /// Initializes a new instance of the PatchPropertiesRenewProperties + /// class. + /// + public PatchPropertiesRenewProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the PatchPropertiesRenewProperties + /// class. + /// + public PatchPropertiesRenewProperties(PurchaseRequest purchaseProperties = default(PurchaseRequest)) + { + PurchaseProperties = purchaseProperties; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "purchaseProperties")] + public PurchaseRequest PurchaseProperties { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Properties.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Properties.cs new file mode 100644 index 0000000000000..469371024e404 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/Properties.cs @@ -0,0 +1,46 @@ +// +// 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.Reservations.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class Properties + { + /// + /// Initializes a new instance of the Properties class. + /// + public Properties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Properties class. + /// + public Properties(SubscriptionScopeProperties propertiesProperty = default(SubscriptionScopeProperties)) + { + PropertiesProperty = propertiesProperty; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "properties")] + public SubscriptionScopeProperties PropertiesProperty { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PurchaseRequest.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PurchaseRequest.cs index ea8f3d3e65a61..7cbd2adc06c93 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PurchaseRequest.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/PurchaseRequest.cs @@ -34,7 +34,9 @@ public PurchaseRequest() /// The Azure Region where the reserved resource /// lives. /// Possible values include: - /// 'VirtualMachines', 'SqlDatabases', 'SuseLinux', 'CosmosDb' + /// 'VirtualMachines', 'SqlDatabases', 'SuseLinux', 'CosmosDb', + /// 'RedHat', 'SqlDataWarehouse', 'VMwareCloudSimple', + /// 'RedHatOsa' /// Possible values include: 'P1Y', 'P3Y' /// Friendly name of the Reservation /// Possible values include: 'Single', @@ -42,7 +44,7 @@ public PurchaseRequest() /// Properties specific to /// each reserved resource type. Not required if not /// applicable. - public PurchaseRequest(SkuName sku = default(SkuName), string location = default(string), string reservedResourceType = default(string), string billingScopeId = default(string), string term = default(string), int? quantity = default(int?), string displayName = default(string), string appliedScopeType = default(string), IList appliedScopes = default(IList), PurchaseRequestPropertiesReservedResourceProperties reservedResourceProperties = default(PurchaseRequestPropertiesReservedResourceProperties)) + public PurchaseRequest(SkuName sku = default(SkuName), string location = default(string), string reservedResourceType = default(string), string billingScopeId = default(string), string term = default(string), int? quantity = default(int?), string displayName = default(string), string appliedScopeType = default(string), IList appliedScopes = default(IList), bool? renew = default(bool?), PurchaseRequestPropertiesReservedResourceProperties reservedResourceProperties = default(PurchaseRequestPropertiesReservedResourceProperties)) { Sku = sku; Location = location; @@ -53,6 +55,7 @@ public PurchaseRequest() DisplayName = displayName; AppliedScopeType = appliedScopeType; AppliedScopes = appliedScopes; + Renew = renew; ReservedResourceProperties = reservedResourceProperties; CustomInit(); } @@ -75,7 +78,8 @@ public PurchaseRequest() /// /// Gets or sets possible values include: 'VirtualMachines', - /// 'SqlDatabases', 'SuseLinux', 'CosmosDb' + /// 'SqlDatabases', 'SuseLinux', 'CosmosDb', 'RedHat', + /// 'SqlDataWarehouse', 'VMwareCloudSimple', 'RedHatOsa' /// [JsonProperty(PropertyName = "properties.reservedResourceType")] public string ReservedResourceType { get; set; } @@ -113,6 +117,11 @@ public PurchaseRequest() [JsonProperty(PropertyName = "properties.appliedScopes")] public IList AppliedScopes { get; set; } + /// + /// + [JsonProperty(PropertyName = "properties.renew")] + public bool? Renew { get; set; } + /// /// Gets or sets properties specific to each reserved resource type. /// Not required if not applicable. diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponse.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponse.cs new file mode 100644 index 0000000000000..2955169192c4f --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponse.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.Reservations.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class RenewPropertiesResponse + { + /// + /// Initializes a new instance of the RenewPropertiesResponse class. + /// + public RenewPropertiesResponse() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the RenewPropertiesResponse class. + /// + /// Amount that Microsoft uses for + /// record. Used during refund for calculating refund limit. Tax is not + /// included. This is locked price 30 days before expiry. + /// Currency and amount that + /// customer will be charged in customer's local currency for renewal + /// purchase. Tax is not included. + public RenewPropertiesResponse(PurchaseRequest purchaseProperties = default(PurchaseRequest), RenewPropertiesResponsePricingCurrencyTotal pricingCurrencyTotal = default(RenewPropertiesResponsePricingCurrencyTotal), RenewPropertiesResponseBillingCurrencyTotal billingCurrencyTotal = default(RenewPropertiesResponseBillingCurrencyTotal)) + { + PurchaseProperties = purchaseProperties; + PricingCurrencyTotal = pricingCurrencyTotal; + BillingCurrencyTotal = billingCurrencyTotal; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "purchaseProperties")] + public PurchaseRequest PurchaseProperties { get; set; } + + /// + /// Gets or sets amount that Microsoft uses for record. Used during + /// refund for calculating refund limit. Tax is not included. This is + /// locked price 30 days before expiry. + /// + [JsonProperty(PropertyName = "pricingCurrencyTotal")] + public RenewPropertiesResponsePricingCurrencyTotal PricingCurrencyTotal { get; set; } + + /// + /// Gets or sets currency and amount that customer will be charged in + /// customer's local currency for renewal purchase. Tax is not + /// included. + /// + [JsonProperty(PropertyName = "billingCurrencyTotal")] + public RenewPropertiesResponseBillingCurrencyTotal BillingCurrencyTotal { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponseBillingCurrencyTotal.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponseBillingCurrencyTotal.cs new file mode 100644 index 0000000000000..2f300aa306033 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponseBillingCurrencyTotal.cs @@ -0,0 +1,58 @@ +// +// 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.Reservations.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Currency and amount that customer will be charged in customer's local + /// currency for renewal purchase. Tax is not included. + /// + public partial class RenewPropertiesResponseBillingCurrencyTotal + { + /// + /// Initializes a new instance of the + /// RenewPropertiesResponseBillingCurrencyTotal class. + /// + public RenewPropertiesResponseBillingCurrencyTotal() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// RenewPropertiesResponseBillingCurrencyTotal class. + /// + public RenewPropertiesResponseBillingCurrencyTotal(string currencyCode = default(string), double? amount = default(double?)) + { + CurrencyCode = currencyCode; + Amount = amount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "currencyCode")] + public string CurrencyCode { get; set; } + + /// + /// + [JsonProperty(PropertyName = "amount")] + public double? Amount { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponsePricingCurrencyTotal.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponsePricingCurrencyTotal.cs new file mode 100644 index 0000000000000..9dc712427432b --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/RenewPropertiesResponsePricingCurrencyTotal.cs @@ -0,0 +1,59 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Reservations.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Amount that Microsoft uses for record. Used during refund for + /// calculating refund limit. Tax is not included. This is locked price 30 + /// days before expiry. + /// + public partial class RenewPropertiesResponsePricingCurrencyTotal + { + /// + /// Initializes a new instance of the + /// RenewPropertiesResponsePricingCurrencyTotal class. + /// + public RenewPropertiesResponsePricingCurrencyTotal() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the + /// RenewPropertiesResponsePricingCurrencyTotal class. + /// + public RenewPropertiesResponsePricingCurrencyTotal(string currencyCode = default(string), double? amount = default(double?)) + { + CurrencyCode = currencyCode; + Amount = amount; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "currencyCode")] + public string CurrencyCode { get; set; } + + /// + /// + [JsonProperty(PropertyName = "amount")] + public double? Amount { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservationProperties.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservationProperties.cs index f1e82e4bc6ef7..555b5627814c7 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservationProperties.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservationProperties.cs @@ -31,7 +31,9 @@ public ReservationProperties() /// Initializes a new instance of the ReservationProperties class. /// /// Possible values include: - /// 'VirtualMachines', 'SqlDatabases', 'SuseLinux', 'CosmosDb' + /// 'VirtualMachines', 'SqlDatabases', 'SuseLinux', 'CosmosDb', + /// 'RedHat', 'SqlDataWarehouse', 'VMwareCloudSimple', + /// 'RedHatOsa' /// Possible values include: 'On', /// 'Off' /// Friendly name for user to easily identify @@ -48,7 +50,14 @@ public ReservationProperties() /// expire. /// Description of the SKU in /// english. - public ReservationProperties(string reservedResourceType = default(string), string instanceFlexibility = default(string), string displayName = default(string), IList appliedScopes = default(IList), string appliedScopeType = default(string), int? quantity = default(int?), string provisioningState = default(string), System.DateTime? effectiveDateTime = default(System.DateTime?), System.DateTime? lastUpdatedDateTime = default(System.DateTime?), System.DateTime? expiryDate = default(System.DateTime?), string skuDescription = default(string), ExtendedStatusInfo extendedStatusInfo = default(ExtendedStatusInfo), ReservationSplitProperties splitProperties = default(ReservationSplitProperties), ReservationMergeProperties mergeProperties = default(ReservationMergeProperties)) + /// Reservation Id of the reservation from + /// which this reservation is renewed. Format of the resource Id is + /// /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}. + /// Reservation Id of the reservation + /// which is purchased because of renew. Format of the resource Id is + /// /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}. + /// Possible values include: 'P1Y', 'P3Y' + public ReservationProperties(string reservedResourceType = default(string), string instanceFlexibility = default(string), string displayName = default(string), IList appliedScopes = default(IList), string appliedScopeType = default(string), int? quantity = default(int?), string provisioningState = default(string), System.DateTime? effectiveDateTime = default(System.DateTime?), System.DateTime? lastUpdatedDateTime = default(System.DateTime?), System.DateTime? expiryDate = default(System.DateTime?), string skuDescription = default(string), ExtendedStatusInfo extendedStatusInfo = default(ExtendedStatusInfo), ReservationSplitProperties splitProperties = default(ReservationSplitProperties), ReservationMergeProperties mergeProperties = default(ReservationMergeProperties), string billingScopeId = default(string), bool? renew = default(bool?), string renewSource = default(string), string renewDestination = default(string), RenewPropertiesResponse renewProperties = default(RenewPropertiesResponse), string term = default(string)) { ReservedResourceType = reservedResourceType; InstanceFlexibility = instanceFlexibility; @@ -64,6 +73,12 @@ public ReservationProperties() ExtendedStatusInfo = extendedStatusInfo; SplitProperties = splitProperties; MergeProperties = mergeProperties; + BillingScopeId = billingScopeId; + Renew = renew; + RenewSource = renewSource; + RenewDestination = renewDestination; + RenewProperties = renewProperties; + Term = term; CustomInit(); } @@ -74,7 +89,8 @@ public ReservationProperties() /// /// Gets or sets possible values include: 'VirtualMachines', - /// 'SqlDatabases', 'SuseLinux', 'CosmosDb' + /// 'SqlDatabases', 'SuseLinux', 'CosmosDb', 'RedHat', + /// 'SqlDataWarehouse', 'VMwareCloudSimple', 'RedHatOsa' /// [JsonProperty(PropertyName = "reservedResourceType")] public string ReservedResourceType { get; set; } @@ -155,5 +171,42 @@ public ReservationProperties() [JsonProperty(PropertyName = "mergeProperties")] public ReservationMergeProperties MergeProperties { get; set; } + /// + /// + [JsonProperty(PropertyName = "billingScopeId")] + public string BillingScopeId { get; set; } + + /// + /// + [JsonProperty(PropertyName = "renew")] + public bool? Renew { get; set; } + + /// + /// Gets or sets reservation Id of the reservation from which this + /// reservation is renewed. Format of the resource Id is + /// /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}. + /// + [JsonProperty(PropertyName = "renewSource")] + public string RenewSource { get; set; } + + /// + /// Gets or sets reservation Id of the reservation which is purchased + /// because of renew. Format of the resource Id is + /// /providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}. + /// + [JsonProperty(PropertyName = "renewDestination")] + public string RenewDestination { get; set; } + + /// + /// + [JsonProperty(PropertyName = "renewProperties")] + public RenewPropertiesResponse RenewProperties { get; set; } + + /// + /// Gets or sets possible values include: 'P1Y', 'P3Y' + /// + [JsonProperty(PropertyName = "term")] + public string Term { get; set; } + } } diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservedResourceType.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservedResourceType.cs index 0e5b9e5f59804..16d4b25593355 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservedResourceType.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ReservedResourceType.cs @@ -20,5 +20,9 @@ public static class ReservedResourceType public const string SqlDatabases = "SqlDatabases"; public const string SuseLinux = "SuseLinux"; public const string CosmosDb = "CosmosDb"; + public const string RedHat = "RedHat"; + public const string SqlDataWarehouse = "SqlDataWarehouse"; + public const string VMwareCloudSimple = "VMwareCloudSimple"; + public const string RedHatOsa = "RedHatOsa"; } } diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ScopeProperties.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ScopeProperties.cs new file mode 100644 index 0000000000000..8a3e30749277e --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/ScopeProperties.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.Reservations.Models +{ + using Newtonsoft.Json; + using System.Linq; + + public partial class ScopeProperties + { + /// + /// Initializes a new instance of the ScopeProperties class. + /// + public ScopeProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ScopeProperties class. + /// + public ScopeProperties(string scope = default(string), bool? valid = default(bool?)) + { + Scope = scope; + Valid = valid; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "scope")] + public string Scope { get; set; } + + /// + /// + [JsonProperty(PropertyName = "valid")] + public bool? Valid { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/SubscriptionScopeProperties.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/SubscriptionScopeProperties.cs new file mode 100644 index 0000000000000..2799a57eba0d6 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/Models/SubscriptionScopeProperties.cs @@ -0,0 +1,50 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.Reservations.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + public partial class SubscriptionScopeProperties + { + /// + /// Initializes a new instance of the SubscriptionScopeProperties + /// class. + /// + public SubscriptionScopeProperties() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SubscriptionScopeProperties + /// class. + /// + public SubscriptionScopeProperties(IList scopes = default(IList)) + { + Scopes = scopes; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// + [JsonProperty(PropertyName = "scopes")] + public IList Scopes { get; set; } + + } +} diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperations.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperations.cs index 88489d2a9964a..3fba64edec1e3 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperations.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperations.cs @@ -50,6 +50,34 @@ internal ReservationOperations(AzureReservationAPIClient client) /// public AzureReservationAPIClient Client { get; private set; } + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + public async Task> AvailableScopesWithHttpMessagesAsync(string reservationOrderId, string reservationId, IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + // Send request + AzureOperationResponse _response = await BeginAvailableScopesWithHttpMessagesAsync(reservationOrderId, reservationId, body, customHeaders, cancellationToken).ConfigureAwait(false); + return await Client.GetPostOrDeleteOperationResultAsync(_response, customHeaders, cancellationToken).ConfigureAwait(false); + } + /// /// Split the `Reservation`. /// @@ -294,6 +322,9 @@ internal ReservationOperations(AzureReservationAPIClient client) /// /// Order Id of the reservation /// + /// + /// Supported value of this query is renewProperties + /// /// /// Headers that will be added to request. /// @@ -315,7 +346,7 @@ internal ReservationOperations(AzureReservationAPIClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetWithHttpMessagesAsync(string reservationId, string reservationOrderId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetWithHttpMessagesAsync(string reservationId, string reservationOrderId, string expand = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (reservationId == null) { @@ -338,6 +369,7 @@ internal ReservationOperations(AzureReservationAPIClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("reservationId", reservationId); tracingParameters.Add("reservationOrderId", reservationOrderId); + tracingParameters.Add("expand", expand); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -351,6 +383,10 @@ internal ReservationOperations(AzureReservationAPIClient client) { _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); } + if (expand != null) + { + _queryParameters.Add(string.Format("expand={0}", System.Uri.EscapeDataString(expand))); + } if (_queryParameters.Count > 0) { _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); @@ -688,6 +724,209 @@ internal ReservationOperations(AzureReservationAPIClient client) return _result; } + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + /// + /// 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> BeginAvailableScopesWithHttpMessagesAsync(string reservationOrderId, string reservationId, IList body, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (reservationOrderId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "reservationOrderId"); + } + if (reservationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "reservationId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (body == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "body"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("reservationOrderId", reservationOrderId); + tracingParameters.Add("reservationId", reservationId); + tracingParameters.Add("body", body); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "BeginAvailableScopes", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Capacity/reservationOrders/{reservationOrderId}/reservations/{reservationId}/availableScopes").ToString(); + _url = _url.Replace("{reservationOrderId}", System.Uri.EscapeDataString(reservationOrderId)); + _url = _url.Replace("{reservationId}", System.Uri.EscapeDataString(reservationId)); + List _queryParameters = new List(); + if (Client.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", System.Uri.EscapeDataString(Client.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += (_url.Contains("?") ? "&" : "?") + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + if (Client.GenerateClientRequestId != null && Client.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", System.Guid.NewGuid().ToString()); + } + if (Client.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", Client.AcceptLanguage); + } + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(body != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(body, 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 ErrorException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + Error _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + 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; + } + /// /// Split the `Reservation`. /// diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperationsExtensions.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperationsExtensions.cs index f26c1c8a2b819..2a461fa4b619c 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperationsExtensions.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/ReservationOperationsExtensions.cs @@ -23,6 +23,58 @@ namespace Microsoft.Azure.Management.Reservations /// public static partial class ReservationOperationsExtensions { + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + public static Properties AvailableScopes(this IReservationOperations operations, string reservationOrderId, string reservationId, IList body) + { + return operations.AvailableScopesAsync(reservationOrderId, reservationId, body).GetAwaiter().GetResult(); + } + + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task AvailableScopesAsync(this IReservationOperations operations, string reservationOrderId, string reservationId, IList body, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.AvailableScopesWithHttpMessagesAsync(reservationOrderId, reservationId, body, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Split the `Reservation`. /// @@ -174,9 +226,12 @@ public static IPage List(this IReservationOperations operat /// /// Order Id of the reservation /// - public static ReservationResponse Get(this IReservationOperations operations, string reservationId, string reservationOrderId) + /// + /// Supported value of this query is renewProperties + /// + public static ReservationResponse Get(this IReservationOperations operations, string reservationId, string reservationOrderId, string expand = default(string)) { - return operations.GetAsync(reservationId, reservationOrderId).GetAwaiter().GetResult(); + return operations.GetAsync(reservationId, reservationOrderId, expand).GetAwaiter().GetResult(); } /// @@ -194,12 +249,15 @@ public static ReservationResponse Get(this IReservationOperations operations, st /// /// Order Id of the reservation /// + /// + /// Supported value of this query is renewProperties + /// /// /// The cancellation token. /// - public static async Task GetAsync(this IReservationOperations operations, string reservationId, string reservationOrderId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IReservationOperations operations, string reservationId, string reservationOrderId, string expand = default(string), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetWithHttpMessagesAsync(reservationId, reservationOrderId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetWithHttpMessagesAsync(reservationId, reservationOrderId, expand, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -303,6 +361,58 @@ public static IPage ListRevisions(this IReservationOperatio } } + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + public static Properties BeginAvailableScopes(this IReservationOperations operations, string reservationOrderId, string reservationId, IList body) + { + return operations.BeginAvailableScopesAsync(reservationOrderId, reservationId, body).GetAwaiter().GetResult(); + } + + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// Get Available Scopes for `Reservation`. + /// + /// + /// + /// The operations group for this extension method. + /// + /// + /// Order Id of the reservation + /// + /// + /// Id of the Reservation Item + /// + /// + /// + /// + /// The cancellation token. + /// + public static async Task BeginAvailableScopesAsync(this IReservationOperations operations, string reservationOrderId, string reservationId, IList body, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.BeginAvailableScopesWithHttpMessagesAsync(reservationOrderId, reservationId, body, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + /// /// Split the `Reservation`. /// diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/SdkInfo_AzureReservationAPI.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/SdkInfo_AzureReservationAPI.cs index 0d3ec05fb76b9..692c86e4194b7 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/SdkInfo_AzureReservationAPI.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Generated/SdkInfo_AzureReservationAPI.cs @@ -27,5 +27,16 @@ public static IEnumerable> ApiInfo_AzureReservatio }.AsEnumerable(); } } + // BEGIN: Code Generation Metadata Section + public static readonly String AutoRestVersion = "latest"; + public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283"; + public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/reservations/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\rd\\azure-sdk-for-net\\sdk"; + public static readonly String GithubForkName = "Azure"; + public static readonly String GithubBranchName = "master"; + public static readonly String GithubCommidId = "543e24fb91a603ac8395d767824ad6deddd1d20a"; + public static readonly String CodeGenerationErrors = ""; + public static readonly String GithubRepoName = "azure-rest-api-specs"; + // END: Code Generation Metadata Section } } + diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Microsoft.Azure.Management.Reservations.csproj b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Microsoft.Azure.Management.Reservations.csproj index 9cc67e4d60012..997e84ce1992d 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Microsoft.Azure.Management.Reservations.csproj +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Microsoft.Azure.Management.Reservations.csproj @@ -7,10 +7,10 @@ Microsoft.Azure.Management.Reservations Microsoft.Azure.Management.Reservations Library Microsoft.Azure.Management.Reservations - 1.10.0-preview + 1.11.0-preview Reservations; - Using new 2019-04-01 api-version contract and adding Calculate and Purchase Reservation + Enhancing Patch API for RI renewal. diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Properties/AssemblyInfo.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Properties/AssemblyInfo.cs index 2606ba977d22a..1b3a9b2fdf7d2 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Properties/AssemblyInfo.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/src/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Reserved Instance Resources.")] [assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.10.0.0")] +[assembly: AssemblyFileVersion("1.11.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/Common.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/Common.cs index 80f7a3f2f849d..8d93d7d688d0d 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/Common.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/Common.cs @@ -1,14 +1,8 @@ -using System; -using System.Collections.Generic; -using System.Text; -using Xunit; -using Microsoft.Azure.Management.Reservations.Models; - namespace Reservations.Tests.ScenarioTests { public class Common { - public const string SubscriptionId = "796c84b3-7e3b-411a-a103-157a9ba99783"; + public const string SubscriptionId = "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80"; } } diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/NonReservationObjectTests.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/NonReservationObjectTests.cs index 61b5dd2baab0b..8466bceefd071 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/NonReservationObjectTests.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/NonReservationObjectTests.cs @@ -45,6 +45,24 @@ public void TestGetCatalog() x.Terms != null )); + catalog = reservationsClient.GetCatalog(SubscriptionId, ReservedResourceType.SqlDataWarehouse, "eastus"); + Assert.True(catalog.All(x => + x.ResourceType != null && + x.Name != null && + x.SkuProperties != null && + x.Locations != null && + x.Terms != null + )); + + catalog = reservationsClient.GetCatalog(SubscriptionId, ReservedResourceType.VMwareCloudSimple, "eastus"); + Assert.True(catalog.All(x => + x.ResourceType != null && + x.Name != null && + x.SkuProperties != null && + x.Locations != null && + x.Terms != null + )); + catalog = reservationsClient.GetCatalog(SubscriptionId, ReservedResourceType.SuseLinux); Assert.True(catalog.All(x => x.ResourceType != null && @@ -53,6 +71,33 @@ public void TestGetCatalog() x.Locations == null && x.Terms != null )); + + catalog = reservationsClient.GetCatalog(SubscriptionId, ReservedResourceType.CosmosDb); + Assert.True(catalog.All(x => + x.ResourceType != null && + x.Name != null && + x.SkuProperties != null && + x.Locations == null && + x.Terms != null + )); + + catalog = reservationsClient.GetCatalog(SubscriptionId, ReservedResourceType.RedHat); + Assert.True(catalog.All(x => + x.ResourceType != null && + x.Name != null && + x.SkuProperties != null && + x.Locations == null && + x.Terms != null + )); + + catalog = reservationsClient.GetCatalog(SubscriptionId, ReservedResourceType.RedHatOsa); + Assert.True(catalog.All(x => + x.ResourceType != null && + x.Name != null && + x.SkuProperties != null && + x.Locations == null && + x.Terms != null + )); } } diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationOrderTests.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationOrderTests.cs index e5f6c5f7e9aa5..081bbff103fa4 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationOrderTests.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationOrderTests.cs @@ -1,20 +1,13 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Reservations.Tests.Helpers; +using System.Net; using Microsoft.Azure.Management.Reservations; -using Microsoft.Azure.Management.Reservations.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.IO; -using System.Linq; -using System.Net; -using System.Reflection; +using Reservations.Tests.Helpers; using Xunit; -using System.Collections.Generic; -using System.Text.RegularExpressions; namespace Reservations.Tests.ScenarioTests { diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationTests.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationTests.cs index 5ca6f9a896a2d..97f03ed146660 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationTests.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationTests.cs @@ -1,19 +1,17 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Reservations.Tests.Helpers; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net; using Microsoft.Azure.Management.Reservations; using Microsoft.Azure.Management.Reservations.Models; using Microsoft.Azure.Management.Resources; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; -using System; -using System.IO; -using System.Linq; -using System.Net; -using System.Reflection; +using Reservations.Tests.Helpers; using Xunit; -using System.Collections.Generic; namespace Reservations.Tests.ScenarioTests { @@ -32,6 +30,9 @@ public void TestReservationOperations() TestGetReservation(reservationOrderId, reservationId); TestUpdateReservationToShared(reservationOrderId, reservationId); TestUpdateReservationToSingle(reservationOrderId, reservationId); + TestUpdateRenewalOn(reservationOrderId, reservationId); + TestUpdateRenewalOff(reservationOrderId, reservationId); + TestUpdateRenewalProperties(reservationOrderId, reservationId); TestSplitAndMerge(reservationOrderId); TestListReservations(reservationOrderId); @@ -184,6 +185,96 @@ private void TestUpdateReservationToSingle(string reservationOrderId, string res } } + private void TestUpdateRenewalOn(string reservationOrderId, string reservationId) + { + HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var reservationsClient = ReservationsTestUtilities.GetAzureReservationAPIClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var reservations = reservationsClient.Reservation.List(reservationOrderId); + var enumerator1 = reservations.GetEnumerator(); + ReservationResponse validReservation = null; + while (enumerator1.MoveNext()) + { + var currentReservation = enumerator1.Current; + if (String.Equals(currentReservation.Properties.ProvisioningState, "Succeeded")) + { + validReservation = currentReservation; + break; + } + } + Assert.NotNull(validReservation); + + reservationId = validReservation.Id.Split('/')[6]; + Patch Patch = new Patch(renew: true); + var reservation = reservationsClient.Reservation.Update(reservationOrderId, reservationId, Patch); + ValidateReservation(reservation); + Assert.True(reservation.Properties.Renew); + } + } + + private void TestUpdateRenewalOff(string reservationOrderId, string reservationId) + { + HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var reservationsClient = ReservationsTestUtilities.GetAzureReservationAPIClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var reservations = reservationsClient.Reservation.List(reservationOrderId); + var enumerator1 = reservations.GetEnumerator(); + ReservationResponse validReservation = null; + while (enumerator1.MoveNext()) + { + var currentReservation = enumerator1.Current; + if (String.Equals(currentReservation.Properties.ProvisioningState, "Succeeded")) + { + validReservation = currentReservation; + break; + } + } + Assert.NotNull(validReservation); + + reservationId = validReservation.Id.Split('/')[6]; + Patch Patch = new Patch(renew: false); + var reservation = reservationsClient.Reservation.Update(reservationOrderId, reservationId, Patch); + ValidateReservation(reservation); + Assert.False(reservation.Properties.Renew); + } + } + + private void TestUpdateRenewalProperties(string reservationOrderId, string reservationId) + { + HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); + using (MockContext context = MockContext.Start(this.GetType().FullName)) + { + var reservationsClient = ReservationsTestUtilities.GetAzureReservationAPIClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); + var reservations = reservationsClient.Reservation.List(reservationOrderId); + var enumerator1 = reservations.GetEnumerator(); + ReservationResponse validReservation = null; + while (enumerator1.MoveNext()) + { + var currentReservation = enumerator1.Current; + if (String.Equals(currentReservation.Properties.ProvisioningState, "Succeeded")) + { + validReservation = currentReservation; + break; + } + } + Assert.NotNull(validReservation); + + reservationId = validReservation.Id.Split('/')[6]; + var renewProperties = new PatchPropertiesRenewProperties() + { + PurchaseProperties = CreatePurchaseRequestBody() + }; + Patch Patch = new Patch(renew: true, renewProperties: renewProperties); + var reservation = reservationsClient.Reservation.Update(reservationOrderId, reservationId, Patch); + var reservationWithRenewProperties = reservationsClient.Reservation.Get(reservationId, reservationOrderId, "renewProperties"); + ValidateReservation(reservationWithRenewProperties); + Assert.True(reservationWithRenewProperties.Properties.Renew); + Assert.NotNull(reservationWithRenewProperties.Properties.RenewProperties); + } + } + private void TestListReservations(string reservationOrderId) { HttpMockServer.RecordsDirectory = GetSessionsDirectoryPath(); diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationsTestBase.cs b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationsTestBase.cs index 187c19157fe25..c15c7500b7bfc 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationsTestBase.cs +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/ScenarioTests/ReservationsTestBase.cs @@ -1,20 +1,19 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. -using Reservations.Tests.Helpers; -using Microsoft.Azure.Management.Reservations; -using Microsoft.Azure.Management.Reservations.Models; -using Microsoft.Azure.Management.Resources; -using Microsoft.Azure.Test.HttpRecorder; -using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using System; +using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Reflection; -using Xunit; -using System.Collections.Generic; using System.Text.RegularExpressions; +using Microsoft.Azure.Management.Reservations; +using Microsoft.Azure.Management.Reservations.Models; +using Microsoft.Azure.Test.HttpRecorder; +using Microsoft.Rest.ClientRuntime.Azure.TestFramework; +using Reservations.Tests.Helpers; +using Xunit; namespace Reservations.Tests.ScenarioTests { @@ -40,18 +39,18 @@ protected static void ValidateReservation(ReservationResponse Reservation) Assert.NotNull(Reservation.Properties); Assert.NotNull(Reservation.Sku); Assert.NotNull(Reservation.Type); - Assert.NotNull(Reservation.Properties.InstanceFlexibility); Assert.NotNull(Reservation.Properties.ReservedResourceType); Assert.NotNull(Reservation.Properties.SkuDescription); + Assert.NotNull(Reservation.Properties.Renew); } - private PurchaseRequest CreatePurchaseRequestBody() + public PurchaseRequest CreatePurchaseRequestBody() { return new PurchaseRequest { - Sku = new SkuName { Name = "Standard_F1" }, - Location = "eastus", + Sku = new SkuName { Name = "Standard_D1" }, + Location = "westus", ReservedResourceType = "VirtualMachines", BillingScopeId = $"/subscriptions/{SubscriptionId}", Term = "P1Y", @@ -60,7 +59,8 @@ private PurchaseRequest CreatePurchaseRequestBody() AppliedScopeType = "Single", AppliedScopes = new List { $"/subscriptions/{SubscriptionId}" }, ReservedResourceProperties = - new PurchaseRequestPropertiesReservedResourceProperties { InstanceFlexibility = "On" } + new PurchaseRequestPropertiesReservedResourceProperties { InstanceFlexibility = "On" }, + Renew = false }; } diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetAppliedReservations.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetAppliedReservations.json index ad92463ffe569..3fe5bcf2e9e63 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetAppliedReservations.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetAppliedReservations.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783/providers/Microsoft.Capacity/appliedReservations?api-version=2019-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzk2Yzg0YjMtN2UzYi00MTFhLWExMDMtMTU3YTliYTk5NzgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvYXBwbGllZFJlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/appliedReservations?api-version=2019-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvYXBwbGllZFJlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60b46f32-e24a-43b7-8600-b3471c077500" + "aef22358-ff22-444f-bb67-55620346e5ab" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:29:39 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "centralus:47ebc5f3-c142-4cf2-b5f2-47a214d9ef0b" + "westus:58824c51-cdad-407a-aa07-ce87bd5fd20b" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "7601944e-2afd-45e7-b2e9-9ed05823a2b1" + "1acc775e-1242-4566-8271-f959515630f0" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190418T001611Z:7601944e-2afd-45e7-b2e9-9ed05823a2b1" + "WESTUS:20190829T182940Z:1acc775e-1242-4566-8271-f959515630f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Thu, 18 Apr 2019 00:16:11 GMT" - ], "Content-Length": [ - "2058" + "1971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783/providers/microsoft.capacity/AppliedReservations/default\",\r\n \"type\": \"Microsoft.Capacity/AppliedReservations\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"reservationOrderIds\": {\r\n \"value\": [\r\n \"/providers/Microsoft.Capacity/reservationorders/11cc779e-a8f4-4ea9-880e-2e92b970d7cb\",\r\n \"/providers/Microsoft.Capacity/reservationorders/0fd2bb5d-5aa5-4c20-8894-d725464e64f8\",\r\n \"/providers/Microsoft.Capacity/reservationorders/8f3035d1-bfa2-4d81-a6cc-062b5cece09a\",\r\n \"/providers/Microsoft.Capacity/reservationorders/be3573e4-3fed-4b85-8d0b-b153553b9696\",\r\n \"/providers/Microsoft.Capacity/reservationorders/86d3f0ad-6cd2-4e3d-a855-eeb5a7a34e5b\",\r\n \"/providers/Microsoft.Capacity/reservationorders/9ef186cf-d8cf-4bae-b085-ac632fb3109f\",\r\n \"/providers/Microsoft.Capacity/reservationorders/3fca167c-0175-4cff-9ee5-b5ff7dabcb52\",\r\n \"/providers/Microsoft.Capacity/reservationorders/0e78e23c-6f29-4db6-bb55-c751f6b7ac56\",\r\n \"/providers/Microsoft.Capacity/reservationorders/05de0c0c-3859-49b7-85bd-b3b7f0868e2f\",\r\n \"/providers/Microsoft.Capacity/reservationorders/fc5e889d-4dae-443c-b9a8-52c97fd77a4f\",\r\n \"/providers/Microsoft.Capacity/reservationorders/4062cf27-decd-43aa-9673-d5a93263c24a\",\r\n \"/providers/Microsoft.Capacity/reservationorders/a4ae747f-e61a-4cb4-8acb-837dad508d48\",\r\n \"/providers/Microsoft.Capacity/reservationorders/a18c5eeb-8434-491b-b819-19726fc8899f\",\r\n \"/providers/Microsoft.Capacity/reservationorders/cab8e53f-cc1e-4d3a-a5bc-e78517b14256\",\r\n \"/providers/Microsoft.Capacity/reservationorders/47d6953a-1812-44d9-8c74-58b28750c394\",\r\n \"/providers/Microsoft.Capacity/reservationorders/fc7bfd20-9152-4f42-bb4c-e319c21baad5\",\r\n \"/providers/Microsoft.Capacity/reservationorders/4bfe0313-f0d3-4439-a53d-2c70aeada4c6\",\r\n \"/providers/Microsoft.Capacity/reservationorders/95531fd1-9d7f-4067-ae88-fc7cfef91d13\",\r\n \"/providers/Microsoft.Capacity/reservationorders/091ab380-5a50-46ce-ae26-916ac9578df9\",\r\n \"/providers/Microsoft.Capacity/reservationorders/9388788b-3254-4349-9c35-b2b2effed515\",\r\n \"/providers/Microsoft.Capacity/reservationorders/edc1ffb8-245c-4329-8c57-3fd2f655370d\"\r\n ]\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/microsoft.capacity/AppliedReservations/default\",\r\n \"type\": \"Microsoft.Capacity/AppliedReservations\",\r\n \"name\": \"default\",\r\n \"properties\": {\r\n \"reservationOrderIds\": {\r\n \"value\": [\r\n \"/providers/Microsoft.Capacity/reservationorders/5f47bc68-c4dc-465c-8ccf-59a60155821e\",\r\n \"/providers/Microsoft.Capacity/reservationorders/1ce5c506-dc1a-4529-9e8a-ce71a3fce011\",\r\n \"/providers/Microsoft.Capacity/reservationorders/5097858c-9ee1-4e1f-9115-e778bc9f07f8\",\r\n \"/providers/Microsoft.Capacity/reservationorders/f83755e0-cbcc-4dd6-a381-cd1022e9374f\",\r\n \"/providers/Microsoft.Capacity/reservationorders/2c777d7f-2b8f-4249-ac3e-b704bfc9646b\",\r\n \"/providers/Microsoft.Capacity/reservationorders/ddc21f31-8ec3-4ecb-a6db-d9c4fa0f1d4d\",\r\n \"/providers/Microsoft.Capacity/reservationorders/97460b12-886c-4388-ac53-43740663802b\",\r\n \"/providers/Microsoft.Capacity/reservationorders/13c2133e-9d20-4908-8def-965b521bf9b7\",\r\n \"/providers/Microsoft.Capacity/reservationorders/451d0d8f-6aff-4b52-a4c8-44d10a4e8b9a\",\r\n \"/providers/Microsoft.Capacity/reservationorders/e742d109-1e57-4054-b9d3-dd18548a0256\",\r\n \"/providers/Microsoft.Capacity/reservationorders/84586bd7-adae-4f62-b87f-b5a36c219d44\",\r\n \"/providers/Microsoft.Capacity/reservationorders/5af652ab-8a38-4821-a88d-9f552037fd86\",\r\n \"/providers/Microsoft.Capacity/reservationorders/37fdc3cd-7016-4711-9bb9-c8976367197a\",\r\n \"/providers/Microsoft.Capacity/reservationorders/1933daea-fa47-4883-b228-ebdcc345a9d1\",\r\n \"/providers/Microsoft.Capacity/reservationorders/f311bbb7-9010-4327-a4cb-81efc96850e0\",\r\n \"/providers/Microsoft.Capacity/reservationorders/d983fd17-f9d5-4990-8a28-067d9368c5fd\",\r\n \"/providers/Microsoft.Capacity/reservationorders/0107376d-9008-461d-bf44-e0ae83716cf5\",\r\n \"/providers/Microsoft.Capacity/reservationorders/0dc0d697-97d8-4546-87eb-7ae8a84c286c\",\r\n \"/providers/Microsoft.Capacity/reservationorders/0a47417c-cd30-4f67-add6-d631583e09f3\",\r\n \"/providers/Microsoft.Capacity/reservationorders/6dbddcad-2aa5-4305-8429-4a0c6f31b869\"\r\n ]\r\n }\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetCatalog.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetCatalog.json index d57ab921a8ec5..a6b7587ef76fd 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetCatalog.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestGetCatalog.json @@ -1,63 +1,132 @@ { "Entries": [ { - "RequestUri": "/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=VirtualMachines&location=westus", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzk2Yzg0YjMtN2UzYi00MTFhLWExMDMtMTU3YTliYTk5NzgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1WaXJ0dWFsTWFjaGluZXMmbG9jYXRpb249d2VzdHVz", + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=VirtualMachines&location=westus", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1WaXJ0dWFsTWFjaGluZXMmbG9jYXRpb249d2VzdHVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7458a0d-4758-4535-9c16-fbf6d5007a98" + "f3ed7f64-42fe-4c7d-8ae3-7fa9453288ac" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:29:34 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "11999" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/16/2019 11:22:22 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:33 PM\"}" ], "x-ms-request-id": [ - "centralus:2b11a26e-09db-44dd-a652-a2f9a80754af" + "westus:6c9c7911-2a6e-43df-8722-bf59d7bded18" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "53352b9e-a9af-479c-9428-58b04cdc1529" + "4802f54d-0fa2-4589-83cc-36a4428a1f5d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190417T232222Z:53352b9e-a9af-479c-9428-58b04cdc1529" + "WESTUS:20190829T182935Z:4802f54d-0fa2-4589-83cc-36a4428a1f5d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Content-Length": [ + "89308" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV48s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"0\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"NVSv3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"NVSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines NVSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"NV48s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"217b7041-a883-4d33-8997-a4b50298ba64\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"NV48s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"448\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"NVSv3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"24\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"NVSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines NVSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"NV24s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d7007c78-917c-438e-b811-713f9a49d0c1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"NV24s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"NVSv3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"NVSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines NVSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"NV12s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"481af8f7-4f2b-4cec-bbbe-8659489ca763\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"NV12s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"H Series High Memory Low Latency\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines H Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"H16mr\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"05e50686-36c1-41ea-8537-75d4da79067c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"H16mr\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"H Series Low Latency\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines H Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"H16r\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"7ef144e8-61b2-4575-bed9-aa1f153f9bdf\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"H16r\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"224\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"H Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines H Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"H16m\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a3d2bf71-0a63-4b93-90a3-8e2acd001363\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"H16m\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"H Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines H Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"H8m\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"50cd4076-72de-4f42-a240-63d75f45df02\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"H8m\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines H Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"H16\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"28bd4017-f91c-4023-a580-2279ec2b7f5a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"H16\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"H Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines H Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"H8\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"2bbe2140-2764-45af-ba6a-7c34824b6182\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"H8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F72s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"144\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"72\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F72s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d7fdf0cb-d0c4-430c-95b8-e464d502a836\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F72s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F64s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F64s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"032c4cf0-b3f6-4c19-98a0-185786ab5217\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F64s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F48s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"96\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F48s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4b0c3813-a14f-4278-9b3d-871a22e588b2\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F48s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F32s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F32s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d02d2391-d8a1-43dd-b043-219756f7c729\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F32s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F16s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cc823cbc-bf60-434d-8aee-a328ecd64154\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F16s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F8s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"54ec9ffb-359b-4f84-8ce5-c42afad5b38a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F8s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F4s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9ac21a95-e778-4df4-92cf-8aa6bbaf0761\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F4s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F2s v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"fff22ffa-d308-4939-ae75-40679826f5ca\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F2s v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines LS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"L32s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4f743466-7a76-422d-976b-20f2560408c8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"L32s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines LS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"L16s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"17a7522f-1e03-4a46-8400-53066aad0cfc\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"L16s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines LS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"L8s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"54c40026-ffc2-4da4-888d-481a0ef44704\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"L8s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"LS Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines LS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"L4s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"2478ad4d-37cf-400e-a3d2-857871312862\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"L4s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D14\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS14\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"c08f7d89-a982-4b80-bfe9-40ccb9e6ee6c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS14\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D13\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS13\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f3e734c0-bd1a-46cc-bcb2-8b25fb6464ed\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS13\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D12\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS12\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4801f383-ed00-4597-a879-da967f7739f3\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS12\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D11\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS11\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"88dfea34-b63f-460b-82cc-22750f689c86\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS11\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D4\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS4\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"8d998c26-3749-4d5c-bc7e-cbd9e15b91d7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cd4dde62-93d3-4c88-a041-7b392216c326\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"709fb951-cbf8-425e-9baa-cf504880d6b5\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D1\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS1\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9a721778-24e6-40c4-a4e5-02014fd8f6ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS14\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D14\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"c08f7d89-a982-4b80-bfe9-40ccb9e6ee6c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D14\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS13\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D13\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f3e734c0-bd1a-46cc-bcb2-8b25fb6464ed\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D13\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS12\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D12\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4801f383-ed00-4597-a879-da967f7739f3\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D12\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS11\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D11\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"88dfea34-b63f-460b-82cc-22750f689c86\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D11\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS4\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D4\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"8d998c26-3749-4d5c-bc7e-cbd9e15b91d7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cd4dde62-93d3-4c88-a041-7b392216c326\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"709fb951-cbf8-425e-9baa-cf504880d6b5\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS1\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D1\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9a721778-24e6-40c4-a4e5-02014fd8f6ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E64_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E64s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"1095124b-d751-4c82-9938-2f64013a9b9e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E64s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64is_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series Isolated\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E64i_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E64is v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"5ccec6c7-43ce-4c73-8000-6cf901125fe1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E64is v3\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E64_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E64-32s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"1095124b-d751-4c82-9938-2f64013a9b9e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E64-32s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E64_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E64-16s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"1095124b-d751-4c82-9938-2f64013a9b9e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E64-16s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E48s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d0c3ea4a-5fa4-4916-87bd-f270a7bc0457\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E48s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E32_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E32s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a58852c7-34c8-41f7-a2fc-c87be1447f7c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E32s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E32_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E32-16s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a58852c7-34c8-41f7-a2fc-c87be1447f7c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E32-16s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E32_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E32-8s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a58852c7-34c8-41f7-a2fc-c87be1447f7c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E32-8s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E20_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E20s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9bc28a02-f556-498a-a4fd-47ff0741fae5\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E20s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E16_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E16s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"73f4f834-6b9b-463e-8a1c-1ff38555063d\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E16s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E16_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E16-8s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"73f4f834-6b9b-463e-8a1c-1ff38555063d\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E16-8s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E16_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E16-4s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"73f4f834-6b9b-463e-8a1c-1ff38555063d\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E16-4s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E8_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E8s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cc078ca0-87b0-462e-be7e-bbe3c1df0ed2\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E8s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-4s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E8_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E8-4s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cc078ca0-87b0-462e-be7e-bbe3c1df0ed2\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E8-4s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8-2s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E8_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E8-2s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cc078ca0-87b0-462e-be7e-bbe3c1df0ed2\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E8-2s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E4_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E4s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ad8bf6ff-c2f5-4861-84f9-c5d3101058aa\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E4s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4-2s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E4_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E4-2s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ad8bf6ff-c2f5-4861-84f9-c5d3101058aa\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E4-2s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E2_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"ESv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines ESv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E2s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65822779-1430-4a44-a6c1-ebc7c2aef10a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E2s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E64s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E64 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"1095124b-d751-4c82-9938-2f64013a9b9e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E64 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64i_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"432\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series Isolated\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E64is_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E64i v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"5ccec6c7-43ce-4c73-8000-6cf901125fe1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E64i v3\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E48_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"384\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E48 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d0c3ea4a-5fa4-4916-87bd-f270a7bc0457\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E48 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E32s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E32 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a58852c7-34c8-41f7-a2fc-c87be1447f7c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E32 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E20_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"160\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E20s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E20 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9bc28a02-f556-498a-a4fd-47ff0741fae5\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E20 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E16s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E16 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"73f4f834-6b9b-463e-8a1c-1ff38555063d\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E16 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E8s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E8 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cc078ca0-87b0-462e-be7e-bbe3c1df0ed2\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E8 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E4s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E4 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ad8bf6ff-c2f5-4861-84f9-c5d3101058aa\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E4 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_E2s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Ev3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Ev3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"E2 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65822779-1430-4a44-a6c1-ebc7c2aef10a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"E2 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D64_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D64s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"775c4b10-16d1-4b6e-9632-c412bf54c42e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D64s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D48s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d7143c18-b365-4347-9eb5-6f6d55ab5145\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D48s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"256\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D64s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D64 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"775c4b10-16d1-4b6e-9632-c412bf54c42e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D64 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D48_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"192\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D48 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d7143c18-b365-4347-9eb5-6f6d55ab5145\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D48 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D32s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D32 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"329a1fce-a987-4d0e-96bb-c9d6ede6a2d1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D32 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D16s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D16 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"878ae2c5-f13d-4c83-9af2-7b333b1c9fa1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D16 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D8s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D8 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f128c5c9-ea87-473a-9672-6cf1fb3b8b98\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D8 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D4s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D4 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"8462aa11-a392-4ae4-87cf-2dbabe31d487\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D4 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D2s_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D2 v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"23d721f3-3f2c-440f-98d8-08a3f30a80ba\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D2 v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F16s\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"F Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines F Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F16\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f5c756b2-15b2-46cd-97b9-df8953afedd1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F16\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F8s\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"F Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines F Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F8\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d963fcb5-ca86-46dd-ac1a-95a52ab154b6\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F8\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F4s\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"F Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines F Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F4\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"1d0eaa49-0140-4f00-8b6d-2aacfd087e78\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F4\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F2s\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"F Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines F Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"efdb48e1-6e65-4d8a-ba65-f7b6a04d05ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F1s\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"F Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines F Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F1\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"818def1d-898e-488e-9271-800928934f34\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"140\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS15_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D15 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ff79cd83-8a39-47cb-b459-0977e3e89e77\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D15 v2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"westus\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS14_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D14 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"825bdd8a-9501-4f95-ada0-0e4948420152\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D14 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS13_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D13 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"63918874-b2ec-4926-8f8c-4c404d384703\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D13 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS12_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D12 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"42b49a56-132d-4182-8061-aec164a8a5a8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D12 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS11_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D11 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"25cd7f37-50c4-4c7a-8db7-f5ddcadfe240\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D11 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS5_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D5 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"bb2ceb60-7694-47ca-8297-ddfbf9f98e05\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D5 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS4_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D4 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ab3049b4-0a43-46e3-9b2c-a37ac14785d8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D4 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS3_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D3 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"b4e55536-5a69-4246-897a-2e7982be5197\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D3 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS2_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D2 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d5a81ebd-6435-4b0f-9ab1-6c0d0dd6eed0\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D2 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS1_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Dv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines Dv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D1 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"2e3c2132-1398-43d2-ad45-1d77f6574933\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D1 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"128\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D32_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D32s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"329a1fce-a987-4d0e-96bb-c9d6ede6a2d1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D32s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D16_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D16s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"878ae2c5-f13d-4c83-9af2-7b333b1c9fa1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D16s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D8_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D8s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f128c5c9-ea87-473a-9672-6cf1fb3b8b98\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D8s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D4_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D4s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"8462aa11-a392-4ae4-87cf-2dbabe31d487\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D4s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D2_v3\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv3 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv3 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D2s v3\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"23d721f3-3f2c-440f-98d8-08a3f30a80ba\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D2s v3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F16\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F16s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f5c756b2-15b2-46cd-97b9-df8953afedd1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F16s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F8\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F8s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d963fcb5-ca86-46dd-ac1a-95a52ab154b6\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F8s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F4\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F4s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"1d0eaa49-0140-4f00-8b6d-2aacfd087e78\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F4s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F2s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"efdb48e1-6e65-4d8a-ba65-f7b6a04d05ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F2s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"FS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F1\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"FS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines FS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F1s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"818def1d-898e-488e-9271-800928934f34\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F1s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"140\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D15_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS15 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ff79cd83-8a39-47cb-b459-0977e3e89e77\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS15 v2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"westus\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D14_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS14 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"825bdd8a-9501-4f95-ada0-0e4948420152\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS14 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D14_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS14-8 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"825bdd8a-9501-4f95-ada0-0e4948420152\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS14-8 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"112\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D14_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS14-4 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"825bdd8a-9501-4f95-ada0-0e4948420152\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS14-4 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D13_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS13 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"63918874-b2ec-4926-8f8c-4c404d384703\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS13 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D13_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS13-4 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"63918874-b2ec-4926-8f8c-4c404d384703\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS13-4 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D13_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS13-2 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"63918874-b2ec-4926-8f8c-4c404d384703\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS13-2 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D12_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS12 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"42b49a56-132d-4182-8061-aec164a8a5a8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS12 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12-2_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D12_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS12-2 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"42b49a56-132d-4182-8061-aec164a8a5a8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS12-2 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D12_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS12-1 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"42b49a56-132d-4182-8061-aec164a8a5a8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS12-1 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D11_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS11 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"25cd7f37-50c4-4c7a-8db7-f5ddcadfe240\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS11 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series High Memory\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D11_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS11-1 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"25cd7f37-50c4-4c7a-8db7-f5ddcadfe240\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS11-1 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"56\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D5_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS5 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"bb2ceb60-7694-47ca-8297-ddfbf9f98e05\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS5 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"28\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D4_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS4 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"ab3049b4-0a43-46e3-9b2c-a37ac14785d8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS4 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"14\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D3_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS3 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"b4e55536-5a69-4246-897a-2e7982be5197\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS3 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"7\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D2_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS2 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d5a81ebd-6435-4b0f-9ab1-6c0d0dd6eed0\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS2 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D1_v2\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DSv2 Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DSv2 Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS1 v2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"2e3c2132-1398-43d2-ad45-1d77f6574933\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS1 v2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B20ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"80\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"20\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B20ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"eb701016-3f6a-45da-afd4-97b37563ba1b\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B20ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B16ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"64\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B16ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"2f1d540a-c863-422b-96dc-744d479b8122\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B16ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B12ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"48\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"12\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B12ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"3b593d38-fff4-46c9-aec8-1174d28b48d7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B12ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"32\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B8ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"48c00aac-c54f-451c-b907-782b0e632e71\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B8ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"16\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B4ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9fb5594c-c780-4c72-b470-a245d94260dd\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B4ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B2s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"0cf74939-2520-41ce-94a2-4db03e5952f0\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B2s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"8\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B2ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"949adaff-7692-4519-bbe0-28d9588f35a1\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B2ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B1s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d1632310-2c4c-406b-85ec-14a68f6fa75e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B1s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series High Memory\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B1ms\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"3492700f-2a14-4f8a-8718-fb3db465ac4a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B1ms\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ls\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"BS Series\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"BS Series VM\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines BS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"B1ls\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"5c147045-fc07-4b71-b0fe-5df5ebde7870\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"B1ls\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=SqlDatabases&location=southeastasia", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1TcWxEYXRhYmFzZXMmbG9jYXRpb249c291dGhlYXN0YXNpYQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fef657de-6560-4e4a-bb82-978d7460df58" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Apr 2019 23:22:22 GMT" + "Thu, 29 Aug 2019 18:29:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:35 PM\"}" + ], + "x-ms-request-id": [ + "westus:5f3dd37e-ed69-4264-b2a0-fa55d1b75460" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "3284cfa1-0deb-402a-a809-38ce9d5042a2" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T182936Z:3284cfa1-0deb-402a-a809-38ce9d5042a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "1985" + "6753" ], "Content-Type": [ "application/json; charset=utf-8" @@ -66,67 +135,205 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"DS Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_D1\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"DS Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines DS Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DS1\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9a721778-24e6-40c4-a4e5-02014fd8f6ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DS1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"3.5\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_DS1\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"1\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"D Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines D Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"D1\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"9a721778-24e6-40c4-a4e5-02014fd8f6ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"D1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"Cores\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"RAM\",\r\n \"value\": \"4\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ReservationSwappableArmSkuName\",\r\n \"value\": \"Standard_F2s\"\r\n },\r\n {\r\n \"name\": \"vCpu\",\r\n \"value\": \"2\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"F Series\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Virtual Machines F Series\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"F2\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"efdb48e1-6e65-4d8a-ba65-f7b6a04d05ee\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"F2\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"westus\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_BC_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Bus Cri-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance Business Critical - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"59c9b9be-b21f-4650-9329-902307863fc7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_GP_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Gen Pur-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance General Purpose - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"91c28f76-193c-4c90-87a1-580552578bb6\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_BC_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Bus Cri-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance Business Critical - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"aecaed42-2a4c-422d-8b72-bf03e11b414a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_GP_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Gen Pur-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance General Purpose - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e1cae245-720b-436f-8f31-c92871bfe606\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_HyperScale_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB SingleDB HyperScale - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database SingleDB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database SingleDB Hyperscale - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"6685385f-6623-4bcb-b734-f3f2052623cc\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"southeastasia\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_BC_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Bus Cri-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool Business Critical - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"0f44f022-4c12-4b50-a576-840435f8e950\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_GP_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Gen Pur-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool General Purpose - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e2fd3ddc-6500-40ee-8ecb-5713ab3c8682\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_HyperScale_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB SingleDB Hyperscale - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database SingleDB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database SingleDB Hyperscale - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"64b445f2-b6ea-4c8d-b3f3-e7d699b44d6d\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"southeastasia\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_BC_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Bus Cri-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool Business Critical - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"811eaaf4-5e57-423b-ba14-61cf1cd1b1a7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_GP_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Gen Pur-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool General Purpose - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"94e45a8d-23a0-4ac1-9720-f19c5411bda8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=SqlDatabases&location=southeastasia", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzk2Yzg0YjMtN2UzYi00MTFhLWExMDMtMTU3YTliYTk5NzgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1TcWxEYXRhYmFzZXMmbG9jYXRpb249c291dGhlYXN0YXNpYQ==", + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=SqlDataWarehouse&location=eastus", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1TcWxEYXRhV2FyZWhvdXNlJmxvY2F0aW9uPWVhc3R1cw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0afc989a-efdb-43fe-aa57-5cf666d2c4eb" + "f7a1eb89-ce45-4895-a140-86a17825b6e5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:29:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "11997" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/16/2019 11:22:23 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:36 PM\"}" ], "x-ms-request-id": [ - "centralus:b53c8281-c57b-4e1b-876e-fc2be5080df3" + "westus:68732a3f-c470-4000-badb-fe066a33d7fc" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ + "a9a170f6-0f44-4eb0-b906-dc10843152b3" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T182936Z:a9a170f6-0f44-4eb0-b906-dc10843152b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "539" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"SqlDataWarehouse\",\r\n \"name\": \"sql_dw100c\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DW Compute Opt Gen2\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Data Warehouse Compute Optimized Gen2\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"DW100c\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"cc5e0b3e-9ebc-451a-8b78-904f230e975b\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 DWUs/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"DW100c\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=VMwareCloudSimple&location=eastus", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1WTXdhcmVDbG91ZFNpbXBsZSZsb2NhdGlvbj1lYXN0dXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "463d2a14-fe79-403c-ad6e-47bd186bd4a7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:29:35 GMT" + ], + "Pragma": [ + "no-cache" + ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:36 PM\"}" + ], + "x-ms-request-id": [ + "westus:f4a5468d-fe7b-4de5-b8a8-959b39faa6b0" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-correlation-request-id": [ - "2ce9933e-3d6e-42bc-b196-64db62f5c714" + "dbaf3fbc-826c-48af-96e9-223fc49cecf3" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190417T232228Z:2ce9933e-3d6e-42bc-b196-64db62f5c714" + "WESTUS:20190829T182936Z:dbaf3fbc-826c-48af-96e9-223fc49cecf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"VMwareCloudSimple\",\r\n \"name\": \"vmware_cloudsimple_cs36\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure VMware Solution by CloudSimple\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure VMware Solution by CloudSimple\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"CS36\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f9d373aa-42d1-4b0c-bae9-f0050f39d803\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Node Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"CS36\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"VMwareCloudSimple\",\r\n \"name\": \"vmware_cloudsimple_cs28\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure VMware Solution by CloudSimple\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure VMware Solution by CloudSimple\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"CS28\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"343b948f-e3ba-4fd7-ae23-75c0fc44d1b8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Node Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"CS28\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=SuseLinux", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1TdXNlTGludXg=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfc96479-26b5-42b1-b16e-c12d03c6e23e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Apr 2019 23:22:28 GMT" + "Thu, 29 Aug 2019 18:29:35 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:36 PM\"}" + ], + "x-ms-request-id": [ + "westus:a288751d-3861-4551-b0dc-e4bb2c904048" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "f5678d4e-f087-4a80-b4c6-de3e153272cf" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T182936Z:f5678d4e-f087-4a80-b4c6-de3e153272cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "4891" + "8680" ], "Content-Type": [ "application/json; charset=utf-8" @@ -135,67 +342,205 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_BC_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Bus Cri-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance Business Critical - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"59c9b9be-b21f-4650-9329-902307863fc7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"southeastasia\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_GP_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Gen Pur-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance General Purpose - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"91c28f76-193c-4c90-87a1-580552578bb6\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_BC_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Bus Cri-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance Business Critical - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"aecaed42-2a4c-422d-8b72-bf03e11b414a\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"southeastasia\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SQLManagedInstances\",\r\n \"name\": \"SQLMI_GP_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Managed Instance Gen Pur-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Managed Instance\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Managed Instance General Purpose - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e1cae245-720b-436f-8f31-c92871bfe606\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_BC_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Bus Cri-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool Business Critical - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"0f44f022-4c12-4b50-a576-840435f8e950\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_GP_Compute_Gen5\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Gen Pur-Compute G5\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool General Purpose - Compute Gen5\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e2fd3ddc-6500-40ee-8ecb-5713ab3c8682\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_BC_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Bus Cri-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool Business Critical - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"811eaaf4-5e57-423b-ba14-61cf1cd1b1a7\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SQLDatabases\",\r\n \"name\": \"SQLDB_GP_Compute_Gen4\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SQL DB Single/Elastic Pool Gen Pur-Compute G4\"\r\n },\r\n {\r\n \"name\": \"DeploymentType\",\r\n \"value\": \"SQL Database Single/Elastic Pool\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SQL Database Single/Elastic Pool General Purpose - Compute Gen4\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"vCore\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"94e45a8d-23a0-4ac1-9720-f19c5411bda8\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 vCore Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"vCore\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_standard_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4ed70d2d-e2bb-4dcd-b6fa-42da71861a1c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_priority_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4edcd5a5-8510-49a8-a9fc-c9721f501913\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_standard_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"907a85de-024f-4dd6-969c-347d47a1bdff\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_1_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"dd75c4ed-be82-4c52-9e65-f63f0b544941\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 1-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Sku\",\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_sap_priority_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"18ae79cd-dfce-48c9-897b-ebd3053c6058\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_standard_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"7b349b65-d906-42e5-833f-b2af38513468\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_standard_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4b2fecfc-b110-4312-8f9d-807db1cb79ae\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_8plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"8+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a161d3d3-0592-4956-9b64-6829678b6506\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 40-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"8+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Sku\",\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_2-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"2-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"60b3ae9d-e77a-46b2-9cdf-92fa87407969\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 4-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"2-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Sku\",\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_priority_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e275a668-ce79-44e2-a659-f43443265e98\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_priority_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e531e1c0-09c9-4d83-b7d0-a2c6741faa22\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_6_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"6 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e8862232-6131-4dbe-bde4-e2ae383afc6f\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 6-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"6 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Sku\",\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_sap_priority_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"847887de-68ce-4adc-8a33-7a3f4133312f\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_sap_priority_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"497fe0b6-fa3c-4e3d-a66b-836097244142\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_standard_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"8c94ad45-b93b-4772-aab1-ff92fcec6610\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_standard_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"0c3ebb4c-db7d-4125-b45a-0534764d4bda\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=SuseLinux", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzk2Yzg0YjMtN2UzYi00MTFhLWExMDMtMTU3YTliYTk5NzgzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1TdXNlTGludXg=", + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=CosmosDb", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1Db3Ntb3NEYg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c79e326-fb23-4bc9-bab7-2677e3ad1f33" + "82009b8b-bb25-4207-b376-ed3411dae3e5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:29:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "11994" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/16/2019 11:22:28 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:36 PM\"}" ], "x-ms-request-id": [ - "centralus:75df0a46-c5cd-4571-a71f-05591dc00491" + "westus:509f3b8b-556c-474d-bf26-dfac764ff1c9" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-correlation-request-id": [ + "4fa443ce-139c-4a0b-8ea9-238e800f0c40" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T182936Z:4fa443ce-139c-4a0b-8ea9-238e800f0c40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "33095" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_1_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_100000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"100,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"100,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_5000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_200000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"200,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"200,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_150000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1500\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"150,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"150,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_50000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"50,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"50,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_40000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"40,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"40,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_2_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"2 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"2 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_10000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"10,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"10,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_10_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"100000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"10 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"10 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_80000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"800\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"80,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"80,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_60000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"600\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"60,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"60,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_2_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"20000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"2 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"2 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_50000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"500\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"50,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"50,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_20_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"200000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"20 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"20 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_500000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"500,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"500,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_40000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"400\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"40,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"40,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_3_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"30000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_140000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1400\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"140,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"140,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_120000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1200\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"120,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"120,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_70000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"700\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"70,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"70,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_60000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"600\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"60,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"60,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_30_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"300000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"30 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"30 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_500000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"5000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"500,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"500,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_130000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1300\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"130,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"130,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_20000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"20,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"20,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_3_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"30000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_400000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"400,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"400,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_400000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"4000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"400,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"400,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_10000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"100\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"10,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"10,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_100000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"100,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"100,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_10_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"100000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"10 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"10 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_70000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"700\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"70,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"70,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_120000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1200\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"120,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"120,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_200000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"2000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"200,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"200,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_5000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"50\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_20_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"200000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"20 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"20 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_80000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"800\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"80,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"80,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_30000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"30,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"30,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_300000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"300,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"300,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_5_million_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"50000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5 Million RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5 Million RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_20000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"200\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"20,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"20,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_130000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1300\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"130,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"130,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_90000_rus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"900\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"90,000 RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"65d4ded2-41ae-43a8-bb68-3c200e1ba864\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"90,000 RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_150000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1500\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"150,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"150,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_5_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"50000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_1_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"10000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_30000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"300\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"30,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"30,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_140000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"1400\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"140,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"140,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_90000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"900\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"90,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"90,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_300000_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"3000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"300,000 Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"300,000 Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"CosmosDb\",\r\n \"name\": \"cosmos_db_30_million_mrus\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\",\r\n \"Monthly\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ReservedUnitCount\",\r\n \"value\": \"300000\"\r\n },\r\n {\r\n \"name\": \"ReservationsAutofitGroup\",\r\n \"value\": \"Multi-master RUs Reservation, Global\"\r\n },\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Cosmos DB\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"30 Million Multi-master RU/s\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"d205cfb6-affc-469b-8d59-aaf017a21011\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"100 Multi-master RU/s/Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"30 Million Multi-master RU/s\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=RedHat", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1SZWRIYXQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d303059d-9711-4648-b7f7-8798269e65e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:29:36 GMT" + ], + "Pragma": [ + "no-cache" + ], "Server": [ - "Microsoft-IIS/8.5" + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:37 PM\"}" + ], + "x-ms-request-id": [ + "westus:13b591a5-ef59-4b50-bcb1-cdcbb436f961" + ], + "X-Content-Type-Options": [ + "nosniff" ], "x-ms-correlation-request-id": [ - "11b80410-07e9-4ac7-8da6-d30b7f4534f2" + "daee4328-a32e-4807-85cf-f7ebbeb34128" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190417T232229Z:11b80410-07e9-4ac7-8da6-d30b7f4534f2" + "WESTUS:20190829T182937Z:daee4328-a32e-4807-85cf-f7ebbeb34128" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Content-Length": [ + "1124" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"RedHat\",\r\n \"name\": \"rhel_1-4_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Red Hat Ent Linux\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Red Hat Enterprise Linux\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"2f96d035-3bac-46d6-b2bc-c6daa0938536\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 1-vCPU VM License Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHat\",\r\n \"name\": \"rhel_5plus_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Red Hat Ent Linux\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Red Hat Enterprise Linux\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a4daffb4-96f4-4fc5-b1e6-fd3a2cf3595e\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 12-vCPU VM License Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80/providers/Microsoft.Capacity/catalogs?api-version=2019-04-01&reservedResourceType=RedHatOsa", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZDNhZTQ4ZTUtZGJiMi00NjE4LWFmZDQtZmIxYjg1NTljYjgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2F0YWxvZ3M/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZyZXNlcnZlZFJlc291cmNlVHlwZT1SZWRIYXRPc2E=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "852bc9a7-7847-40b8-8ef7-d5f9dbffdff9" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], "Date": [ - "Wed, 17 Apr 2019 23:22:28 GMT" + "Thu, 29 Aug 2019 18:29:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:37 PM\"}" + ], + "x-ms-request-id": [ + "westus:b115680f-e4fb-4516-828d-40da0a5e5982" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "61aad27b-2dda-43a6-91a3-e29ddf982d54" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T182937Z:61aad27b-2dda-43a6-91a3-e29ddf982d54" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "7661" + "7459" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,12 +549,12 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_standard_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4ed70d2d-e2bb-4dcd-b6fa-42da71861a1c\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_priority_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4edcd5a5-8510-49a8-a9fc-c9721f501913\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_standard_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"907a85de-024f-4dd6-969c-347d47a1bdff\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_1_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"dd75c4ed-be82-4c52-9e65-f63f0b544941\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 1-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_sap_priority_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"18ae79cd-dfce-48c9-897b-ebd3053c6058\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_standard_5plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"5+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"7b349b65-d906-42e5-833f-b2af38513468\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"5+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_standard_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"4b2fecfc-b110-4312-8f9d-807db1cb79ae\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_8plus_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"8+ vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"085dc9ee-005d-4075-ac11-822ccde9e8f6\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 24-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"8+ vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_2-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"2-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"924bee71-5eb8-424f-83ed-a58823c33908\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 2-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"2-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_priority_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e275a668-ce79-44e2-a659-f43443265e98\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_priority_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e531e1c0-09c9-4d83-b7d0-a2c6741faa22\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_priority_6_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"6 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"e8862232-6131-4dbe-bde4-e2ae383afc6f\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 6-vCPU VM Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"6 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_sap_priority_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"847887de-68ce-4adc-8a33-7a3f4133312f\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_sap_priority_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for SAP Priority\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"497fe0b6-fa3c-4e3d-a66b-836097244142\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_hpc_standard_1-2_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server for HPC Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server for HPC Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"8c94ad45-b93b-4772-aab1-ff92fcec6610\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"1-2 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"SuseLinux\",\r\n \"name\": \"sles_standard_3-4_vcpu_vm\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"SUSE Linux Ent Server Std\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"SUSE Linux Enterprise Server Standard\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"0c3ebb4c-db7d-4125-b45a-0534764d4bda\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Support Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"3-4 vCPU VM\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Sku\",\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_general_purpose_v3_16_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"16 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"990e1842-dbfe-4a5c-8f7a-3bc021f667b2\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"16 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_general_purpose_v3_8_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"8 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"0cf72fdb-8e27-4e40-881c-edc6d4f5d944\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"8 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_compute_optimized_v2_4_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"4 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"f6be36df-12c0-4438-b686-6837a702bf32\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"4 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_memory_optimized_v3_8_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"8 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"28576259-2f76-44a4-9076-f61f2ad41e93\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"8 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_general_purpose_v3_32_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"32 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"04747909-677b-46ce-be41-06f92d65e1c4\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"32 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_memory_optimized_v3_4_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"4 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"45383e4c-8bf0-4316-84fe-34c67da46fb5\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"4 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_memory_optimized_v3_32_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"32 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"dd9d8d30-99d0-4955-b1f6-5a0c7780b37b\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"32 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_compute_optimized_v2_16_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"16 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"23aaae57-a49d-43b2-8530-7f7ec23d6b49\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"16 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_compute_optimized_v2_8_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"8 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"7d777ed2-45f5-4722-8dc3-9e2cab5baa80\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"8 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_compute_optimized_v2_32_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Compute Optimized v2\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"32 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"63cdc84f-e717-4ed3-b76a-6a1a224ad3b0\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"32 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_memory_optimized_v3_16_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift Memory Optimized v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"16 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"a7059f69-9291-45df-8308-4b13942a1794\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"16 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedHatOsa\",\r\n \"name\": \"red_hat_openshift_general_purpose_v3_4_vcpu\",\r\n \"terms\": [\r\n \"P1Y\",\r\n \"P3Y\"\r\n ],\r\n \"billingPlans\": {\r\n \"p1Y\": [\r\n \"Upfront\"\r\n ],\r\n \"p3Y\": [\r\n \"Upfront\"\r\n ]\r\n },\r\n \"skuProperties\": [\r\n {\r\n \"name\": \"ProductShortName\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"ProductTitle\",\r\n \"value\": \"Azure Red Hat OpenShift General Purpose v3\"\r\n },\r\n {\r\n \"name\": \"SkuName\",\r\n \"value\": \"4 vCPU\"\r\n },\r\n {\r\n \"name\": \"MeterId\",\r\n \"value\": \"c54bdb2d-d6dd-42a2-893c-a29f4e5220c4\"\r\n },\r\n {\r\n \"name\": \"MeterType\",\r\n \"value\": \"1 Compute Hour\"\r\n },\r\n {\r\n \"name\": \"SkuDisplayName\",\r\n \"value\": \"4 vCPU\"\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Term\",\r\n \"values\": [\r\n \"P3Y\"\r\n ],\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n }\r\n]", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestListOperations.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestListOperations.json index 4dee3e4db2261..93a8998bec58f 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestListOperations.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/NonReservationObjectTests/TestListOperations.json @@ -7,52 +7,52 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfce2504-5756-4c0a-87d1-1dbace1da062" + "d02f03e4-f103-4e21-8607-e3ef8193c9ef" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:29:37 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14999" + "11999" ], "x-ms-request-id": [ - "centralus:97627e01-1950-40cc-9223-d5817fde94c8" + "westus:c6ff41a4-cb80-4325-a59f-0b35bbac4ed3" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "b31a1d26-ad88-45df-a8a5-da9a68dfb4d4" + "fe5a7915-31a2-416d-b494-410cb34b7c3f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190417T232239Z:b31a1d26-ad88-45df-a8a5-da9a68dfb4d4" + "WESTUS:20190829T182938Z:fe5a7915-31a2-416d-b494-410cb34b7c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Wed, 17 Apr 2019 23:22:39 GMT" - ], "Content-Length": [ "5896" ], @@ -69,6 +69,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/PurchaseReservationOrder.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/PurchaseReservationOrder.json index a104814507770..f2421e20c4726 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/PurchaseReservationOrder.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/PurchaseReservationOrder.json @@ -4,34 +4,40 @@ "RequestUri": "/providers/Microsoft.Capacity/calculatePrice?api-version=2019-04-01", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2FsY3VsYXRlUHJpY2U/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"renew\": false,\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5c6c090-3dff-4946-9966-a4ca3b703496" + "4f9821ea-e461-4b1d-be2d-5cfea4c3f61b" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "518" + "539" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 19:15:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], @@ -39,31 +45,25 @@ "1199" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:24:14 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 7:15:02 PM\"}" ], "x-ms-request-id": [ - "centralus:1a116515-e537-48fa-8d26-90b55a2370ca" + "westus:cf82befe-8e51-4758-8b66-384c2e2e093c" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "33642fa4-8760-4bbc-8759-a6c45196bf0f" + "d2ea14a3-9800-4676-84ee-2c3f6b083b9d" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T192423Z:33642fa4-8760-4bbc-8759-a6c45196bf0f" + "WESTUS:20190829T191506Z:d2ea14a3-9800-4676-84ee-2c3f6b083b9d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:24:23 GMT" - ], "Content-Length": [ - "295" + "344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,76 +72,76 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"billingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 813.0\r\n },\r\n \"reservationOrderId\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"skuTitle\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"skuDescription\": \"Standard_F1\",\r\n \"pricingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 813.0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"billingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 1398.0\r\n },\r\n \"netTotal\": 0.0,\r\n \"taxTotal\": 0.0,\r\n \"grandTotal\": 0.0,\r\n \"reservationOrderId\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"skuTitle\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"skuDescription\": \"Standard_D1\",\r\n \"pricingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 1398.0\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNGIwYTBmNDMtZWE4NC00NmY0LTgyYTMtMThjMmIwZTU4ZjZhP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNzQ0MDIyMmQtZDQxOS00ZmU1LWIwNWItMzcxYjAyYTBiYjliP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"renew\": false,\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fe12a020-7d1c-4c46-88ab-e7f9ac8aca36" + "1a2ea47c-2d64-4137-afee-9c2b00722560" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "518" + "539" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 19:15:19 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a?api-version=2019-04-01" + "https://management.azure.com/providers/Microsoft.Capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b?api-version=2019-04-01" ], "Retry-After": [ "120" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:24:25 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 7:15:06 PM\"}" ], "x-ms-request-id": [ - "centralus:5b43af05-150b-48f0-853e-290bed4d7478" + "westus:69c24f4e-5f5f-4fdf-b602-2f886ce160dc" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-ratelimit-remaining-tenant-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "5639a04b-f91f-47ac-b8df-0fd8a00dbc92" + "53284e85-05d6-4a6c-82ec-f6363416c8df" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T192440Z:5639a04b-f91f-47ac-b8df-0fd8a00dbc92" + "WESTUS:20190829T191519Z:53284e85-05d6-4a6c-82ec-f6363416c8df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:24:40 GMT" - ], "Content-Length": [ - "1165" + "1203" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,58 +150,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"etag\": 1,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Creating\",\r\n \"reservations\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a/reservations/e18d44a9-c613-4c48-a55f-7c92ddf20da4\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a/e18d44a9-c613-4c48-a55f-7c92ddf20da4\",\r\n \"etag\": 1,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"etag\": 1,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Creating\",\r\n \"reservations\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b/reservations/c75b7923-903d-4c0b-b4d7-77be57edbb4f\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b/c75b7923-903d-4c0b-b4d7-77be57edbb4f\",\r\n \"etag\": 1,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNGIwYTBmNDMtZWE4NC00NmY0LTgyYTMtMThjMmIwZTU4ZjZhP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNzQ0MDIyMmQtZDQxOS00ZmU1LWIwNWItMzcxYjAyYTBiYjliP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 19:17:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14997" + "11999" ], "x-ms-request-id": [ - "centralus:fe54e993-6316-4718-8798-ce7dc05abe7b" + "westus:29baf967-281e-41f7-8e8e-e02a952bd2d3" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "b9c0d18d-cf72-41f8-b022-9364b3e911c7" + "6a350fec-7f7b-4564-bd50-c2627f0601c8" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T192642Z:b9c0d18d-cf72-41f8-b022-9364b3e911c7" + "WESTUS:20190829T191720Z:6a350fec-7f7b-4564-bd50-c2627f0601c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:26:42 GMT" - ], "Content-Length": [ - "558" + "548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -210,58 +210,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"etag\": 7,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"ConfirmedBilling\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a/reservations/e18d44a9-c613-4c48-a55f-7c92ddf20da4\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"etag\": 4,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Creating\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b/reservations/c75b7923-903d-4c0b-b4d7-77be57edbb4f\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNGIwYTBmNDMtZWE4NC00NmY0LTgyYTMtMThjMmIwZTU4ZjZhP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNzQ0MDIyMmQtZDQxOS00ZmU1LWIwNWItMzcxYjAyYTBiYjliP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 19:19:20 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14998" + "11999" ], "x-ms-request-id": [ - "centralus:086abeec-5f4a-4777-839f-8c4968b84a66" + "westus:e121b8c2-e4b6-4ad3-88a8-ad8e33bf8d60" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "2827cebc-850c-4487-9f89-7c65786fd5dd" + "d922d342-c1c2-47e8-a03d-b6d4720c6f31" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T192844Z:2827cebc-850c-4487-9f89-7c65786fd5dd" + "WESTUS:20190829T191920Z:d922d342-c1c2-47e8-a03d-b6d4720c6f31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:28:43 GMT" - ], "Content-Length": [ - "600" + "624" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,12 +270,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"createdDateTime\": \"2019-04-19T19:26:46.8824742Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a/reservations/e18d44a9-c613-4c48-a55f-7c92ddf20da4\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"createdDateTime\": \"2019-08-29T19:19:13.0944347Z\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b/reservations/c75b7923-903d-4c0b-b4d7-77be57edbb4f\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestGetReservationOrder.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestGetReservationOrder.json index d0038c560fd43..5e8cc7629f4f0 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestGetReservationOrder.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestGetReservationOrder.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNGIwYTBmNDMtZWE4NC00NmY0LTgyYTMtMThjMmIwZTU4ZjZhP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvNzQ0MDIyMmQtZDQxOS00ZmU1LWIwNWItMzcxYjAyYTBiYjliP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf0e72c9-3621-400e-b79e-3541e0a5a2fc" + "f47c6299-f775-4f20-9b6a-b38ca9d79f8e" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 19:19:21 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14996" + "11999" ], "x-ms-request-id": [ - "centralus:6d433aaf-fd1c-4fac-baa7-3439e2447e2f" + "westus:4e5a73bf-99b2-4d23-bcbb-97b095cb8db5" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "48f595cb-5d12-4a53-aa26-d198233900a5" + "04ac9961-aad8-43f3-8f95-862cdc3eb91c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T192927Z:48f595cb-5d12-4a53-aa26-d198233900a5" + "WESTUS:20190829T191921Z:04ac9961-aad8-43f3-8f95-862cdc3eb91c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:29:27 GMT" - ], "Content-Length": [ - "600" + "624" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"createdDateTime\": \"2019-04-19T19:26:46.8824742Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a/reservations/e18d44a9-c613-4c48-a55f-7c92ddf20da4\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"createdDateTime\": \"2019-08-29T19:19:13.0944347Z\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b/reservations/c75b7923-903d-4c0b-b4d7-77be57edbb4f\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestListReservationOrders.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestListReservationOrders.json index f11566d370cda..a5ee56f2315d0 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestListReservationOrders.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationOrderTests/TestListReservationOrders.json @@ -7,33 +7,36 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7f4bc88-955b-4cb2-ab24-f4fdab011743" + "3eef33da-4b79-44bc-b8a8-cb7580de074d" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 19:19:22 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "e9970142-1335-43fe-8819-4e4518534d21" + "a377850b-ac80-46ab-9a86-0ba4713295b2" ], "x-ms-correlation-request-id": [ - "e9970142-1335-43fe-8819-4e4518534d21" + "a377850b-ac80-46ab-9a86-0ba4713295b2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T192933Z:e9970142-1335-43fe-8819-4e4518534d21" + "WESTUS:20190829T191922Z:a377850b-ac80-46ab-9a86-0ba4713295b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -41,25 +44,22 @@ "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Fri, 19 Apr 2019 19:29:33 GMT" + "Content-Length": [ + "13422" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "7822" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/053e1cf2-f160-4e82-89d2-a872eee4de8d\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"053e1cf2-f160-4e82-89d2-a872eee4de8d\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T00:50:30.4459428Z\",\r\n \"createdDateTime\": \"2019-04-18T00:53:06.1026071Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/053e1cf2-f160-4e82-89d2-a872eee4de8d/reservations/a4d29a07-6626-4761-987e-06d0d1fdf369\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/a5d97f42-0bbd-446a-8424-1fc279f93103\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"a5d97f42-0bbd-446a-8424-1fc279f93103\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T01:00:45.438892Z\",\r\n \"createdDateTime\": \"2019-04-18T01:03:11.0227465Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/a5d97f42-0bbd-446a-8424-1fc279f93103/reservations/cd6391f3-a580-4c0e-811a-99832a7418e4\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/92de10e2-a6b7-4056-ace2-ca126f242f12\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"92de10e2-a6b7-4056-ace2-ca126f242f12\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T18:28:43.5874014Z\",\r\n \"createdDateTime\": \"2019-04-19T18:31:14.4092806Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/92de10e2-a6b7-4056-ace2-ca126f242f12/reservations/60e8adfe-f39d-434a-8151-c8d7f0a0e900\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/6b6b02bd-1718-4368-9dc6-109ce30baf27\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"6b6b02bd-1718-4368-9dc6-109ce30baf27\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T21:21:01.7442939Z\",\r\n \"createdDateTime\": \"2019-04-18T21:23:17.5339214Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/6b6b02bd-1718-4368-9dc6-109ce30baf27/reservations/c61287dc-3420-4e90-8b26-3e924897d175\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/778da6ca-99fe-4b21-a5d6-1474f03311e1\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"778da6ca-99fe-4b21-a5d6-1474f03311e1\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T01:03:38.9455587Z\",\r\n \"createdDateTime\": \"2019-04-18T01:05:45.813349Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/778da6ca-99fe-4b21-a5d6-1474f03311e1/reservations/9eba4702-5af6-493d-b7b2-ad2744fed6f3\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/34771af7-7696-4c78-a99a-f3dacb604ce3\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"34771af7-7696-4c78-a99a-f3dacb604ce3\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T00:56:21.9465604Z\",\r\n \"createdDateTime\": \"2019-04-18T00:58:23.7494896Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/34771af7-7696-4c78-a99a-f3dacb604ce3/reservations/e7b92e3d-b88f-49ed-b4dd-6605d30a1d41\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0832bb7f-6caa-4616-8fb7-c171cb930f1a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"0832bb7f-6caa-4616-8fb7-c171cb930f1a\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T19:09:09.9212977Z\",\r\n \"createdDateTime\": \"2019-04-18T19:11:53.7417564Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0832bb7f-6caa-4616-8fb7-c171cb930f1a/reservations/6eebc301-b174-48f2-84c7-214ba0e7440b\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:24:36.5490847Z\",\r\n \"createdDateTime\": \"2019-04-19T19:26:46.8824742Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4b0a0f43-ea84-46f4-82a3-18c2b0e58f6a/reservations/e18d44a9-c613-4c48-a55f-7c92ddf20da4\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/63d5e82b-6f10-4987-9be2-d743efd19444\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"63d5e82b-6f10-4987-9be2-d743efd19444\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-18T00:54:00.0437825Z\",\r\n \"createdDateTime\": \"2019-04-18T00:56:02.3417057Z\",\r\n \"expiryDate\": \"2020-04-18\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/63d5e82b-6f10-4987-9be2-d743efd19444/reservations/b62a53da-22be-47b1-9bfc-17efa8c12669\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/61dfc0f8-f187-4d02-96ed-f645ce8eb617\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"61dfc0f8-f187-4d02-96ed-f645ce8eb617\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T18:20:10.6512778Z\",\r\n \"createdDateTime\": \"2019-04-19T18:22:41.7688951Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/61dfc0f8-f187-4d02-96ed-f645ce8eb617/reservations/30281bd2-52e6-4ef8-8887-f54df5e84da2\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/b38ac868-be83-4d7d-8df6-a3321fac4e56\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"b38ac868-be83-4d7d-8df6-a3321fac4e56\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T18:16:34.7008299Z\",\r\n \"createdDateTime\": \"2019-04-19T18:25:57.3682073Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/b38ac868-be83-4d7d-8df6-a3321fac4e56/reservations/1eb9647a-0c71-472d-b07b-eeb66cdc1201\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/68ebd7d1-be83-4eaa-9f75-ad1f58d9a9df\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"68ebd7d1-be83-4eaa-9f75-ad1f58d9a9df\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:04:26.7015614Z\",\r\n \"createdDateTime\": \"2019-04-19T19:07:08.2215489Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/68ebd7d1-be83-4eaa-9f75-ad1f58d9a9df/reservations/1ef92c7d-ce7b-4349-8229-98c36bade21d\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/cef3cbc2-1ff1-4c4c-b6d5-3b687ea87a40\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"cef3cbc2-1ff1-4c4c-b6d5-3b687ea87a40\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T18:23:30.4310798Z\",\r\n \"createdDateTime\": \"2019-04-19T18:25:53.9574678Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/cef3cbc2-1ff1-4c4c-b6d5-3b687ea87a40/reservations/cd329cca-6851-4e35-8449-94d312210f93\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/e742d109-1e57-4054-b9d3-dd18548a0256\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"e742d109-1e57-4054-b9d3-dd18548a0256\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T22:45:09.1460424Z\",\r\n \"createdDateTime\": \"2019-08-22T22:48:13.1891572Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/e742d109-1e57-4054-b9d3-dd18548a0256/reservations/75cc912f-bc4b-4ac3-8812-439c44a34455\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/5af652ab-8a38-4821-a88d-9f552037fd86\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"5af652ab-8a38-4821-a88d-9f552037fd86\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T23:00:27.5623654Z\",\r\n \"createdDateTime\": \"2019-08-22T23:03:20.0346385Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/5af652ab-8a38-4821-a88d-9f552037fd86/reservations/5c24d4c1-6711-45af-b7c2-fb3250b7ade5\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/d983fd17-f9d5-4990-8a28-067d9368c5fd\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"d983fd17-f9d5-4990-8a28-067d9368c5fd\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T02:19:43.2482715Z\",\r\n \"createdDateTime\": \"2019-08-23T02:23:09.3129833Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/d983fd17-f9d5-4990-8a28-067d9368c5fd/reservations/dfac805d-e0f8-423b-8b5d-52ace715c105\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3\",\r\n \"etag\": 11,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T04:08:23.3109013Z\",\r\n \"createdDateTime\": \"2019-08-23T04:13:25.819115Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/8a835b02-2dac-4c48-928d-403ea989ab2f\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/56a3ec1d-3b6e-4639-b8dd-8f9b0a0edda6\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/ae1fbdad-6333-4964-9f4c-83f7e2b7f44f\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"etag\": 11,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"createdDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4159f0e3-8031-4634-a68f-5b51c3dc6050\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"4159f0e3-8031-4634-a68f-5b51c3dc6050\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T18:37:03.7537423Z\",\r\n \"createdDateTime\": \"2019-08-29T18:40:03.047827Z\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/4159f0e3-8031-4634-a68f-5b51c3dc6050/reservations/5bf8a9c5-6598-4178-a02a-cd16f90549fa\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/f311bbb7-9010-4327-a4cb-81efc96850e0\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"f311bbb7-9010-4327-a4cb-81efc96850e0\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T00:38:43.6629089Z\",\r\n \"createdDateTime\": \"2019-08-23T00:42:02.9491229Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/f311bbb7-9010-4327-a4cb-81efc96850e0/reservations/87e3cc4e-c5aa-4be1-a7d7-c5a2b22bec67\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/97460b12-886c-4388-ac53-43740663802b\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"97460b12-886c-4388-ac53-43740663802b\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T21:53:18.7477069Z\",\r\n \"createdDateTime\": \"2019-08-22T21:56:09.9221741Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/97460b12-886c-4388-ac53-43740663802b/reservations/f794cd23-12c3-43db-ba6b-a5355bf348bb\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/84586bd7-adae-4f62-b87f-b5a36c219d44\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"84586bd7-adae-4f62-b87f-b5a36c219d44\",\r\n \"etag\": 11,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T22:54:11.9358418Z\",\r\n \"createdDateTime\": \"2019-08-22T22:57:02.1304534Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/84586bd7-adae-4f62-b87f-b5a36c219d44/reservations/35cb820d-b3a6-4bb5-9ba9-a10cdbac458f\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/84586bd7-adae-4f62-b87f-b5a36c219d44/reservations/aa6e5fdc-2717-4676-bf0b-7744a30fa873\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/84586bd7-adae-4f62-b87f-b5a36c219d44/reservations/fd96ca7a-1559-463d-a6e0-68ef98aef3a6\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/84586bd7-adae-4f62-b87f-b5a36c219d44/reservations/0ba68adc-0aae-4ca9-963f-17f97bec6893\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/ddc21f31-8ec3-4ecb-a6db-d9c4fa0f1d4d\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"ddc21f31-8ec3-4ecb-a6db-d9c4fa0f1d4d\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T21:48:52.7642723Z\",\r\n \"createdDateTime\": \"2019-08-22T21:52:38.3462618Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/ddc21f31-8ec3-4ecb-a6db-d9c4fa0f1d4d/reservations/b6057a29-616a-4dc6-a88e-398afc580899\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/6dbddcad-2aa5-4305-8429-4a0c6f31b869\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"6dbddcad-2aa5-4305-8429-4a0c6f31b869\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T17:59:49.5123225Z\",\r\n \"createdDateTime\": \"2019-08-23T18:03:31.8207727Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/6dbddcad-2aa5-4305-8429-4a0c6f31b869/reservations/9cb178f6-774a-42f7-be45-4b2d7de6e815\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/1933daea-fa47-4883-b228-ebdcc345a9d1\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"1933daea-fa47-4883-b228-ebdcc345a9d1\",\r\n \"etag\": 11,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T00:32:49.0298091Z\",\r\n \"createdDateTime\": \"2019-08-23T00:36:03.7241709Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/1933daea-fa47-4883-b228-ebdcc345a9d1/reservations/c3db41c2-853b-482e-8cc3-c996d50e9ba3\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/1933daea-fa47-4883-b228-ebdcc345a9d1/reservations/a45578bd-c7e1-4518-9287-356fe539d839\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/1933daea-fa47-4883-b228-ebdcc345a9d1/reservations/a17b4e13-2714-4d98-b595-53508d0b8b31\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/1933daea-fa47-4883-b228-ebdcc345a9d1/reservations/8cd2bc26-cdb6-4d4e-8649-c7d26273033d\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/451d0d8f-6aff-4b52-a4c8-44d10a4e8b9a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"451d0d8f-6aff-4b52-a4c8-44d10a4e8b9a\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T22:05:03.5564557Z\",\r\n \"createdDateTime\": \"2019-08-22T22:08:09.7454093Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/451d0d8f-6aff-4b52-a4c8-44d10a4e8b9a/reservations/c08986d6-cd57-4742-abc5-92d532506c1d\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0107376d-9008-461d-bf44-e0ae83716cf5\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"0107376d-9008-461d-bf44-e0ae83716cf5\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T02:38:35.6039859Z\",\r\n \"createdDateTime\": \"2019-08-23T02:42:15.8934022Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0107376d-9008-461d-bf44-e0ae83716cf5/reservations/c8c058a9-86da-40f0-b9a7-b427a389e788\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/13c2133e-9d20-4908-8def-965b521bf9b7\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"13c2133e-9d20-4908-8def-965b521bf9b7\",\r\n \"etag\": 11,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-22T21:58:34.933665Z\",\r\n \"createdDateTime\": \"2019-08-22T22:01:34.3236568Z\",\r\n \"expiryDate\": \"2020-08-22\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/13c2133e-9d20-4908-8def-965b521bf9b7/reservations/7bac8a25-5e0b-494e-9caa-fdaca8ba3e81\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/13c2133e-9d20-4908-8def-965b521bf9b7/reservations/77a94134-8b8c-4a2f-99e6-3d2e4e7fe58d\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/13c2133e-9d20-4908-8def-965b521bf9b7/reservations/a32ff0b5-880a-41f9-bae1-a44ec57f0342\"\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/13c2133e-9d20-4908-8def-965b521bf9b7/reservations/c0162157-1fd8-43a2-9586-2a60a08e489d\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/37fdc3cd-7016-4711-9bb9-c8976367197a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"37fdc3cd-7016-4711-9bb9-c8976367197a\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T00:15:12.1467446Z\",\r\n \"createdDateTime\": \"2019-08-23T00:18:32.8816156Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/37fdc3cd-7016-4711-9bb9-c8976367197a/reservations/3e057dff-a282-4ee9-8875-a59cf63a4bfc\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0dc0d697-97d8-4546-87eb-7ae8a84c286c\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"0dc0d697-97d8-4546-87eb-7ae8a84c286c\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-23T02:45:09.4249763Z\",\r\n \"createdDateTime\": \"2019-08-23T02:47:54.3426796Z\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0dc0d697-97d8-4546-87eb-7ae8a84c286c/reservations/d5b53ddf-f577-43b0-8f82-5c48fbdf951d\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"7440222d-d419-4fe5-b05b-371b02a0bb9b\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T19:15:17.8934833Z\",\r\n \"createdDateTime\": \"2019-08-29T19:19:13.0944347Z\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/7440222d-d419-4fe5-b05b-371b02a0bb9b/reservations/c75b7923-903d-4c0b-b4d7-77be57edbb4f\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/PurchaseReservationOrder.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/PurchaseReservationOrder.json index f640ce7fd4dcc..e11244dde71a4 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/PurchaseReservationOrder.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/PurchaseReservationOrder.json @@ -4,34 +4,40 @@ "RequestUri": "/providers/Microsoft.Capacity/calculatePrice?api-version=2019-04-01", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvY2FsY3VsYXRlUHJpY2U/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"renew\": false,\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4e2085ff-e407-404d-90f3-b25bf0da3103" + "b3576594-bd37-4be3-9645-73e7e93d8b99" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "518" + "539" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:29:50 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], @@ -39,31 +45,25 @@ "1199" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:37:06 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:41 PM\"}" ], "x-ms-request-id": [ - "centralus:3386782e-b03c-4959-8a94-7872dd3fe732" + "westus:456f5e15-b4e2-4c27-819d-6c2a6b495b2e" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "40ad4f75-3552-4a90-9381-6d4e3db82784" + "84ce06f6-40d1-4cf0-a6f7-261cdbf31b34" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T193709Z:40ad4f75-3552-4a90-9381-6d4e3db82784" + "WESTUS:20190829T182950Z:84ce06f6-40d1-4cf0-a6f7-261cdbf31b34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:37:08 GMT" - ], "Content-Length": [ - "295" + "344" ], "Content-Type": [ "application/json; charset=utf-8" @@ -72,76 +72,76 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"billingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 813.0\r\n },\r\n \"reservationOrderId\": \"88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"skuTitle\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"skuDescription\": \"Standard_F1\",\r\n \"pricingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 813.0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"billingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 1398.0\r\n },\r\n \"netTotal\": 0.0,\r\n \"taxTotal\": 0.0,\r\n \"grandTotal\": 0.0,\r\n \"reservationOrderId\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"skuTitle\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"skuDescription\": \"Standard_D1\",\r\n \"pricingCurrencyTotal\": {\r\n \"currencyCode\": \"USD\",\r\n \"amount\": 1398.0\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"renew\": false,\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c0f44719-e925-4f48-bf8f-7db3530dc885" + "1e2e8316-dd2e-4c12-959f-2b08b6a4e56c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "518" + "539" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:30:02 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2?api-version=2019-04-01" + "https://management.azure.com/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e?api-version=2019-04-01" ], "Retry-After": [ "120" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:37:10 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" ], "x-ms-request-id": [ - "centralus:3a989665-c010-4096-958d-f5e151cf76dd" + "westus:c92c4d53-a82b-4747-8cda-879f77606603" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-ratelimit-remaining-tenant-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "f1e7e530-1d87-4f54-ae00-af15e04998fc" + "b8d4f9dc-6847-4611-9cf2-3574275d0503" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T193724Z:f1e7e530-1d87-4f54-ae00-af15e04998fc" + "WESTUS:20190829T183003Z:b8d4f9dc-6847-4611-9cf2-3574275d0503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:37:24 GMT" - ], "Content-Length": [ - "1162" + "1203" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,58 +150,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"etag\": 1,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Creating\",\r\n \"reservations\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 1,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"etag\": 1,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Creating\",\r\n \"reservations\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 1,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:32:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "11999" ], "x-ms-request-id": [ - "centralus:0104b616-e2cd-4c91-9bf1-4f8537e81b6e" + "westus:812a49d7-3e1c-4145-86ff-47ab42d91105" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "78498734-630c-4248-b49e-20dcfffe92e0" + "2504b195-5ac4-4336-bf68-50865cde9f8f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T193926Z:78498734-630c-4248-b49e-20dcfffe92e0" + "WESTUS:20190829T183203Z:2504b195-5ac4-4336-bf68-50865cde9f8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:39:25 GMT" - ], "Content-Length": [ - "529" + "557" ], "Content-Type": [ "application/json; charset=utf-8" @@ -210,58 +210,58 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"etag\": 6,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"PendingBilling\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"etag\": 6,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"ConfirmedCapacity\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:34:03 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "11999" ], "x-ms-request-id": [ - "centralus:5d921cf5-314c-4517-b2d4-3eaed6501249" + "westus:ab091659-603f-4705-82b8-059a35dd111e" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "9d029a7a-17b4-46fa-abbf-849d4dc00d2a" + "ad372663-ec4b-4669-b295-63337ba38f46" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194128Z:9d029a7a-17b4-46fa-abbf-849d4dc00d2a" + "WESTUS:20190829T183404Z:ad372663-ec4b-4669-b295-63337ba38f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:28 GMT" - ], "Content-Length": [ - "598" + "623" ], "Content-Type": [ "application/json; charset=utf-8" @@ -270,12 +270,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2\",\r\n \"etag\": 8,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"createdDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n }\r\n ],\r\n \"originalQuantity\": 3\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e\",\r\n \"etag\": 9,\r\n \"properties\": {\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"requestDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"createdDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"term\": \"P1Y\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"reservations\": [\r\n {\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n }\r\n ],\r\n \"originalQuantity\": 3,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestGetReservation.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestGetReservation.json index 4b01a696d1e82..042ae99d2a203 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestGetReservation.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestGetReservation.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucy81N2RlNDE3Mi00OTNhLTQ5MjktYTQ0YS1iMzk5Y2VmZTRmZjg/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff9e3e6e-3904-4c33-ad7a-b464de76dbd0" + "b853b189-6d87-489b-a48e-804b0b274c9a" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:34:05 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "11999" ], "x-ms-request-id": [ - "centralus:bff4285d-a19d-4e2e-a78e-d5c36fe119e6" + "westus:0b09b596-9701-4507-aec4-e538a8730893" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "1953f25c-eb48-45ba-94bc-f730f25eb5f4" + "8b897294-ef9e-4080-b8e1-8e588eafd64a" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194130Z:1953f25c-eb48-45ba-94bc-f730f25eb5f4" + "WESTUS:20190829T183405Z:8b897294-ef9e-4080-b8e1-8e588eafd64a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:30 GMT" - ], "Content-Length": [ - "863" + "985" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 8,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 9,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservationRevisions.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservationRevisions.json index 7d962c64a9048..bb1183a4368b8 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservationRevisions.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservationRevisions.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucy81N2RlNDE3Mi00OTNhLTQ5MjktYTQ0YS1iMzk5Y2VmZTRmZjgvcmV2aXNpb25zP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTYvcmV2aXNpb25zP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc8a484a-1b40-4e94-98eb-9eb7e84ff541" + "004f168f-246b-468f-83a1-93bd57b11450" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:36:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "11999" ], "x-ms-request-id": [ - "centralus:3ec5a8da-7557-4e2c-836b-630569983e26" + "westus:c152bef8-612c-47d7-8974-fe7cd9fc5251" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "fc1d59e9-b51b-4c24-915a-9f2081553257" + "5aeaf642-fe0a-4a2d-9146-bec05862f5d5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194222Z:fc1d59e9-b51b-4c24-915a-9f2081553257" + "WESTUS:20190829T183648Z:5aeaf642-fe0a-4a2d-9146-bec05862f5d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:42:21 GMT" - ], "Content-Length": [ - "14041" + "20713" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/15\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/15\",\r\n \"etag\": 15,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:51.515238Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Split\",\r\n \"message\": \"This reservation was split and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:54.1147926Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/14\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/14\",\r\n \"etag\": 14,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:43.3343552Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:51.515238Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/13\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/13\",\r\n \"etag\": 13,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:43.3343552Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:50.7652314Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/12\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/12\",\r\n \"etag\": 12,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:43.3343552Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:44.9821591Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/11\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/11\",\r\n \"etag\": 11,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:35.4611846Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:43.1624546Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/10\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/10\",\r\n \"etag\": 10,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:35.4611846Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:37.1798636Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/9\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/9\",\r\n \"etag\": 9,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:34.8000332Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/8\",\r\n \"etag\": 8,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/7\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/7\",\r\n \"etag\": 7,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"ConfirmedBilling\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"Your payment has been successfully processed. We are finalizing your reservation.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:39:35.9007626Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/6\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/6\",\r\n \"etag\": 6,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"PendingBilling\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"Payment processing is in progress.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:38:58.299247Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/5\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/5\",\r\n \"etag\": 5,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"ConfirmedCapacity\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:38:45.6731655Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/4\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/4\",\r\n \"etag\": 4,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"PendingCapacity\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"Reservation of capacity is in progress.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:38:33.0561285Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/3\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/3\",\r\n \"etag\": 3,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:38:18.3794635Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/2\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/2\",\r\n \"etag\": 2,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:37:34.4566419Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8/revisions/1\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8/1\",\r\n \"etag\": 1,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:37:21.462408Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/22\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/22\",\r\n \"etag\": 22,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:21.0740494Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Split\",\r\n \"message\": \"This reservation was split and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:21.9959057Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n },\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/21\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/21\",\r\n \"etag\": 21,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:52.1887253Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:21.0740494Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n },\r\n \"renew\": true\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/20\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/20\",\r\n \"etag\": 20,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:52.1887253Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:20.7146754Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/19\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/19\",\r\n \"etag\": 19,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:52.1887253Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:57.2669427Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/18\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/18\",\r\n \"etag\": 18,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:28.2471122Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:52.0949764Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/17\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/17\",\r\n \"etag\": 17,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:28.2471122Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:30.4353659Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/16\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/16\",\r\n \"etag\": 16,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:58.781541Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:28.168988Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/15\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/15\",\r\n \"etag\": 15,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:58.781541Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:03.4718893Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/14\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/14\",\r\n \"etag\": 14,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:33.9434264Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:58.6409315Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/13\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/13\",\r\n \"etag\": 13,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:33.9434264Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:34.365302Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/12\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/12\",\r\n \"etag\": 12,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:08.1536111Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:33.8496337Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/11\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/11\",\r\n \"etag\": 11,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:08.1536111Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:08.9036058Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/10\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/10\",\r\n \"etag\": 10,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Pending\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"An operation is in progress on your reservation. Please wait for operation to complete before taking further action.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:07.9504826Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/9\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/9\",\r\n \"etag\": 9,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/8\",\r\n \"etag\": 8,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"ConfirmedBilling\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"Your payment has been successfully processed. We are finalizing your reservation.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:32:24.1106851Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/7\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/7\",\r\n \"etag\": 7,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"PendingBilling\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"Payment processing is in progress.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:32:10.1002641Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/6\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/6\",\r\n \"etag\": 6,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"ConfirmedCapacity\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:31:45.8729969Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/5\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/5\",\r\n \"etag\": 5,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"PendingCapacity\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Pending\",\r\n \"message\": \"Reservation of capacity is in progress.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:31:33.5434487Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/4\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/4\",\r\n \"etag\": 4,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:31:18.402006Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/3\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/3\",\r\n \"etag\": 3,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:30:29.435724Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/2\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/2\",\r\n \"etag\": 2,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:30:11.3801308Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/revisions/1\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations/revisions\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096/1\",\r\n \"etag\": 1,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Creating\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:30:00.9351791Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservations.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservations.json index 2665ccc59fd35..941758e5c01f9 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservations.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestListReservations.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f90f2912-5042-4faf-b7d0-22edd64637db" + "f6d07dcd-2190-4207-a9a1-187cbbff5898" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:36:47 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" + "11999" ], "x-ms-request-id": [ - "centralus:f0c14173-28d2-43d6-8624-1922ff79b36d" + "westus:54ffc50d-c529-46f5-b2f1-50935ae763ab" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "40fb4ae8-5550-4eac-ab69-1ebdd1e077ea" + "514a81a8-3ede-4df6-bbd7-6f82065de397" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194220Z:40fb4ae8-5550-4eac-ab69-1ebdd1e077ea" + "WESTUS:20190829T183647Z:514a81a8-3ede-4df6-bbd7-6f82065de397" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:42:19 GMT" - ], "Content-Length": [ - "4962" + "5448" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,12 +63,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 15,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:51.515238Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Split\",\r\n \"message\": \"This reservation was split and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:54.1147926Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"etag\": 5,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 1,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/07db5089-675f-4a11-b50d-ff6e03bc936d\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/7e1a102b-1326-4c9a-a783-e4a5c542c417\",\r\n \"etag\": 4,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 2,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/07db5089-675f-4a11-b50d-ff6e03bc936d\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/07db5089-675f-4a11-b50d-ff6e03bc936d\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/07db5089-675f-4a11-b50d-ff6e03bc936d\",\r\n \"etag\": 2,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"mergeProperties\": {\r\n \"mergeSources\": [\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n },\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 22,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:21.0740494Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Split\",\r\n \"message\": \"This reservation was split and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:21.9959057Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n },\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"etag\": 5,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 1,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\"\r\n },\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/b71866fb-d3ef-428a-ae09-8b402552aa51\",\r\n \"etag\": 4,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 2,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\"\r\n },\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/59d0ff87-5223-42cc-8383-8818d1fcf7dc\",\r\n \"etag\": 2,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"mergeProperties\": {\r\n \"mergeSources\": [\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n },\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestSplitAndMerge.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestSplitAndMerge.json index 2ae5d7d5b1374..bb3ae939d8dff 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestSplitAndMerge.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestSplitAndMerge.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77395747-b77e-4cad-ad23-3b3674747419" + "6e5fe73a-1350-4856-b884-87c5549830aa" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:35:59 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14996" + "11999" ], "x-ms-request-id": [ - "centralus:269e5178-6037-4927-806f-d230f90aba7f" + "westus:55e00cb8-f0f7-4436-b8f6-99b885c0fc60" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "7a8e1089-c5c1-4051-8c2f-1c7e8ede1ff4" + "2651483a-3ba7-4836-b1a9-7ca93783f9a7" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194149Z:7a8e1089-c5c1-4051-8c2f-1c7e8ede1ff4" + "WESTUS:20190829T183600Z:2651483a-3ba7-4836-b1a9-7ca93783f9a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:48 GMT" - ], "Content-Length": [ - "878" + "999" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 12,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:43.3343552Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:44.9821591Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 19,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:52.1887253Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:57.2669427Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": true,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/split?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3NwbGl0P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/split?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3NwbGl0P2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"quantities\": [\r\n 1,\r\n 2\r\n ],\r\n \"reservationId\": \"/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"quantities\": [\r\n 1,\r\n 2\r\n ],\r\n \"reservationId\": \"/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6666d45c-0070-4276-8d14-cff5aa3deab6" + "897edab2-47c1-4311-89cc-fe8b3b90e660" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,47 +95,47 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:36:23 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Capacity/reservationorders/88e38576-b823-41f6-b128-65ac8da980c2/split/operationresults/57de4172-493a-4929-a44a-b399cefe4ff8_13?api-version=2019-04-01" + "https://management.azure.com/providers/Microsoft.Capacity/reservationorders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/splitoperationresults/d489ca6b-3ecf-415b-bcc0-cbee2eff0096_20?api-version=2019-04-01" ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-writes": [ - "1198" + "1199" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:37:10 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" ], "x-ms-request-id": [ - "centralus:d1818b7e-d7fa-47dd-86ea-9956e32bbc26" + "westus:7f6cebcf-8345-4802-a7f5-e87c712267b1" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "a52b08a8-99d8-4d11-848d-39681f226d4c" + "52383a92-70ed-497b-9219-0e7a5a32eaf2" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194154Z:a52b08a8-99d8-4d11-848d-39681f226d4c" + "WESTUS:20190829T183624Z:52383a92-70ed-497b-9219-0e7a5a32eaf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:54 GMT" - ], "Content-Length": [ - "3201" + "3245" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,26 +144,26 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"etag\": 2,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 1,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:51.515238Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:54.1147926Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/7e1a102b-1326-4c9a-a783-e4a5c542c417\",\r\n \"etag\": 2,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 2,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:51.515238Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:54.1147926Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 15,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:51.515238Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Split\",\r\n \"message\": \"This reservation was split and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:54.1147926Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"etag\": 2,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 1,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:21.0740494Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:21.9959057Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/b71866fb-d3ef-428a-ae09-8b402552aa51\",\r\n \"etag\": 2,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 2,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:21.0740494Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:21.9959057Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 22,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:21.0740494Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Split\",\r\n \"message\": \"This reservation was split and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:21.9959057Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitDestinations\": [\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n },\r\n \"renew\": false\r\n }\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/merge?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL21lcmdlP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/merge?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL21lcmdlP2FwaS12ZXJzaW9uPTIwMTktMDQtMDE=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"sources\": [\r\n \"/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"sources\": [\r\n \"/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0e4f9517-1839-4ef7-91b9-538c73add78d" + "b4df06b2-cf85-4683-8dde-175a49bcdfa4" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -176,47 +176,47 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:36:45 GMT" + ], "Pragma": [ "no-cache" ], "Location": [ - "https://api-dogfood.resources.windows-int.net/providers/Microsoft.Capacity/reservationorders/88e38576-b823-41f6-b128-65ac8da980c2/merge/operationresults/74834fec-88fc-4d99-8940-a72b60ae6d9a_3?api-version=2019-04-01" + "https://management.azure.com/providers/Microsoft.Capacity/reservationorders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/mergeoperationresults/2bbabdca-39fe-4631-9324-fa4b4669fe40_3?api-version=2019-04-01" ], "Retry-After": [ "10" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-writes": [ - "1197" + "1198" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:37:10 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" ], "x-ms-request-id": [ - "centralus:a2471a53-44b1-4af9-a76f-d7b21a2ca0d4" + "westus:4c5c08bb-4493-4a92-9ba3-c07decfcaa1a" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "74eba185-ec7d-4486-a9a0-2ab93ca7459a" + "aa2d3d17-8259-422e-9b6d-d32710add2e5" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194218Z:74eba185-ec7d-4486-a9a0-2ab93ca7459a" + "WESTUS:20190829T183646Z:aa2d3d17-8259-422e-9b6d-d32710add2e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:42:18 GMT" - ], "Content-Length": [ - "3662" + "3702" ], "Content-Type": [ "application/json; charset=utf-8" @@ -225,12 +225,12 @@ "-1" ] }, - "ResponseBody": "[\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"etag\": 5,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 1,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/07db5089-675f-4a11-b50d-ff6e03bc936d\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/7e1a102b-1326-4c9a-a783-e4a5c542c417\",\r\n \"etag\": 4,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 2,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active.\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/07db5089-675f-4a11-b50d-ff6e03bc936d\"\r\n }\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/07db5089-675f-4a11-b50d-ff6e03bc936d\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/07db5089-675f-4a11-b50d-ff6e03bc936d\",\r\n \"etag\": 2,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:42:18.2090224Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"mergeProperties\": {\r\n \"mergeSources\": [\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/74834fec-88fc-4d99-8940-a72b60ae6d9a\",\r\n \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/7e1a102b-1326-4c9a-a783-e4a5c542c417\"\r\n ]\r\n }\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"etag\": 5,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 1,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\"\r\n },\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/b71866fb-d3ef-428a-ae09-8b402552aa51\",\r\n \"etag\": 4,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 2,\r\n \"provisioningState\": \"Cancelled\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"extendedStatusInfo\": {\r\n \"statusCode\": \"Merged\",\r\n \"message\": \"This reservation was merged and is no longer active\"\r\n },\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"splitProperties\": {\r\n \"splitSource\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\"\r\n },\r\n \"mergeProperties\": {\r\n \"mergeDestination\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\"\r\n },\r\n \"renew\": false\r\n }\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/59d0ff87-5223-42cc-8383-8818d1fcf7dc\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/59d0ff87-5223-42cc-8383-8818d1fcf7dc\",\r\n \"etag\": 2,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:36:45.7328275Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"mergeProperties\": {\r\n \"mergeSources\": [\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/2bbabdca-39fe-4631-9324-fa4b4669fe40\",\r\n \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/b71866fb-d3ef-428a-ae09-8b402552aa51\"\r\n ]\r\n },\r\n \"renew\": false\r\n }\r\n }\r\n]", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalOff.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalOff.json new file mode 100644 index 0000000000000..ddfec99ba5f0e --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalOff.json @@ -0,0 +1,149 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "81d91107-74ca-442f-96b0-cc1c87c93b45" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:14:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westus:4a0a1f72-57f4-4701-9114-9c00cea830ef" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "df3fbfb6-4bf3-4584-9bed-1cd932196460" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041459Z:df3fbfb6-4bf3-4584-9bed-1cd932196460" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "999" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 15,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:14:56.2852634Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:14:57.7540019Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": true,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucy81OThkNDRiMy1lNTQzLTQ4ODgtYmRkYy00YTk4ZTZjZDc2ODY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"renew\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a9c09f0-8097-40b4-b5db-7b2019c70305" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "48" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:15:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/21/2019 4:08:12 AM\"}" + ], + "x-ms-request-id": [ + "westus:fe811ecf-f832-4d2e-9ec8-c53756aba680" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "78b57375-c36a-464d-a754-f469f2099442" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041502Z:78b57375-c36a-464d-a754-f469f2099442" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "849" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 17,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:14:59.9096008Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:15:01.112739Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" + } +} \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalOn.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalOn.json new file mode 100644 index 0000000000000..02fc68bc64db7 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalOn.json @@ -0,0 +1,149 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4f65e7aa-167d-4531-9697-0f77dbf1f48f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:14:55 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westus:b4239648-d702-4a9d-bf14-0ae3ee84b658" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "6b3f86ad-3ecc-4f0b-a3ba-9daa4aedb649" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041455Z:6b3f86ad-3ecc-4f0b-a3ba-9daa4aedb649" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1000" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 13,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:14:53.2458185Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:14:53.7458162Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucy81OThkNDRiMy1lNTQzLTQ4ODgtYmRkYy00YTk4ZTZjZDc2ODY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"renew\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92556dc4-7a42-472a-92f6-c0c52b975bce" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "47" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:14:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/21/2019 4:08:12 AM\"}" + ], + "x-ms-request-id": [ + "westus:fa696aff-dafc-4a1b-a4ca-1545f3e38c90" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "dd158937-0f8b-4edf-a1f6-06cb7e96a7be" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041458Z:dd158937-0f8b-4edf-a1f6-06cb7e96a7be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "849" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 15,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:14:56.2852634Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:14:57.7540019Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" + } +} \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalProperties.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalProperties.json new file mode 100644 index 0000000000000..8d262c559a5d5 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateRenewalProperties.json @@ -0,0 +1,215 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "92d65b4d-c25e-4396-a590-2e3af93ce447" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:15:02 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westus:9e023f64-641e-49a1-b4bd-f8069c56cedc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "73a826ab-6499-4ac0-ab61-79d30a83f50d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041502Z:73a826ab-6499-4ac0-ab61-79d30a83f50d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "999" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 17,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:14:59.9096008Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:15:01.112739Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucy81OThkNDRiMy1lNTQzLTQ4ODgtYmRkYy00YTk4ZTZjZDc2ODY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"renew\": true,\r\n \"renewProperties\": {\r\n \"purchaseProperties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"renew\": false,\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95a655b5-0855-4fb5-824e-c145a12b08e4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "770" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:15:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/21/2019 4:08:12 AM\"}" + ], + "x-ms-request-id": [ + "westus:00869eca-9342-4178-bbbc-508db022e565" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "f686273d-cf0d-4fd5-bc5d-12efb1694947" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041525Z:f686273d-cf0d-4fd5-bc5d-12efb1694947" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "848" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 19,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:15:24.2458692Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:15:25.167738Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true,\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686?api-version=2019-04-01&expand=renewProperties", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvMGE0NzQxN2MtY2QzMC00ZjY3LWFkZDYtZDYzMTU4M2UwOWYzL3Jlc2VydmF0aW9ucy81OThkNDRiMy1lNTQzLTQ4ODgtYmRkYy00YTk4ZTZjZDc2ODY/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZleHBhbmQ9cmVuZXdQcm9wZXJ0aWVz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfc0ca67-367a-4b8e-be39-0f5c48e50977" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.10.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Fri, 23 Aug 2019 04:15:25 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "westus:3f2e7c4f-ee0e-4008-a604-12bbe66cf40c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "5c763d6a-e1fd-4ff9-9a96-e9d4b46b0006" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190823T041526Z:5c763d6a-e1fd-4ff9-9a96-e9d4b46b0006" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1467" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/0a47417c-cd30-4f67-add6-d631583e09f3/reservations/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"0a47417c-cd30-4f67-add6-d631583e09f3/598d44b3-e543-4888-bddc-4a98e6cd7686\",\r\n \"etag\": 19,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-23\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-23T04:15:24.2458692Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-23T04:15:25.167738Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": true,\r\n \"renewProperties\": {\r\n \"purchaseProperties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"billingPlan\": \"Upfront\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n },\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"renew\": false\r\n }\r\n }\r\n },\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" + } +} \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToShared.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToShared.json index fba350b1fd123..86ec072c848f9 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToShared.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToShared.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3f1cc58-4b5f-4141-a1f8-237bceb35648" + "b062f8af-6314-482f-94c9-dd51f0354f9c" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:34:06 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "11999" ], "x-ms-request-id": [ - "centralus:b8e4a16d-710d-48bd-8399-cb5ae5a27f14" + "westus:46e52cb1-b02d-43db-81e9-a655af1c0c93" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "8f4ae9c4-b8f5-4b71-b2cb-f05141220460" + "b0f7d9cd-be81-459d-8dea-fc070b3d853c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194133Z:8f4ae9c4-b8f5-4b71-b2cb-f05141220460" + "WESTUS:20190829T183407Z:b0f7d9cd-be81-459d-8dea-fc070b3d853c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:32 GMT" - ], "Content-Length": [ - "875" + "997" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 8,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:39:49.687958Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 9,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:32:38.171893Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucy81N2RlNDE3Mi00OTNhLTQ5MjktYTQ0YS1iMzk5Y2VmZTRmZjg/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a09581bc-33b1-4ad1-a513-077e9a4c3067" + "ab33b832-56e2-4233-9c66-dbe100b11c42" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,41 +95,41 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:34:09 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-writes": [ - "1197" + "1199" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:37:10 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" ], "x-ms-request-id": [ - "centralus:3208cbbd-b665-4bb1-a046-361bb9249bd0" + "westus:7ddc2f2c-301f-4b25-bcc2-a97e652f2111" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "435c3062-d53d-4953-a690-e83205b5f8ec" + "4527cab0-5249-4516-a193-a4c224e80023" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194138Z:435c3062-d53d-4953-a690-e83205b5f8ec" + "WESTUS:20190829T183410Z:4527cab0-5249-4516-a193-a4c224e80023" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:38 GMT" - ], "Content-Length": [ - "740" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,12 +138,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 10,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:35.4611846Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:37.1798636Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 11,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:08.1536111Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:08.9036058Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToSingle.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToSingle.json index 787f4fcb483b6..8f978668f255f 100644 --- a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToSingle.json +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/ReservationTests/TestUpdateReservationToSingle.json @@ -1,60 +1,60 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05fb3cca-81c1-4e96-94d1-14ba6da65970" + "f8158450-aa92-4290-b827-6f219d81a888" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:34:11 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "11998" ], "x-ms-request-id": [ - "centralus:3bda6933-04b8-40a8-bef0-73dbc63bf21b" + "westus:ae74fbc1-dc99-41ad-8a4a-df59c17091c8" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "dff27499-5653-4e81-84a5-8315b3c73268" + "50283350-13c2-45e2-a985-39e08a6ae1f1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194141Z:dff27499-5653-4e81-84a5-8315b3c73268" + "WESTUS:20190829T183411Z:50283350-13c2-45e2-a985-39e08a6ae1f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:41 GMT" - ], "Content-Length": [ - "806" + "928" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 10,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:35.4611846Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:37.1798636Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 11,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopeType\": \"Shared\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:08.1536111Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:08.9036058Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8?api-version=2019-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvODhlMzg1NzYtYjgyMy00MWY2LWIxMjgtNjVhYzhkYTk4MGMyL3Jlc2VydmF0aW9ucy81N2RlNDE3Mi00OTNhLTQ5MjktYTQ0YS1iMzk5Y2VmZTRmZjg/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e492f485-00d8-41fc-9f84-8a7540e1777b" + "b4f88e8f-6af8-45c6-bc66-421f6a826bd5" ], - "Accept-Language": [ + "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27414.06", + "FxVersion/4.6.26614.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.9.1.0" + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,41 +95,41 @@ "Cache-Control": [ "no-cache" ], + "Date": [ + "Thu, 29 Aug 2019 18:34:35 GMT" + ], "Pragma": [ "no-cache" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "Vary": [ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-writes": [ - "1198" + "1199" ], "x-ms-test": [ - "{\"contact\":\"juhle\",\"scenarios\":\"test\",\"retention\":\"7/18/2019 7:37:10 PM\"}" + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" ], "x-ms-request-id": [ - "centralus:d223da04-486f-4c33-b1ca-efc7ec2da860" + "westus:1d4cc967-404e-4a42-849a-d87721494504" ], "X-Content-Type-Options": [ "nosniff" ], - "Server": [ - "Microsoft-IIS/8.5" - ], "x-ms-correlation-request-id": [ - "c8cb7663-52fd-4dd3-a534-b63641f8fcde" + "89644cf8-5789-4c8e-853f-62f86aa8a0b1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20190419T194146Z:c8cb7663-52fd-4dd3-a534-b63641f8fcde" + "WESTUS:20190829T183436Z:89644cf8-5789-4c8e-853f-62f86aa8a0b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Fri, 19 Apr 2019 19:41:46 GMT" - ], "Content-Length": [ - "812" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,12 +138,12 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_F1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/88e38576-b823-41f6-b128-65ac8da980c2/reservations/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"88e38576-b823-41f6-b128-65ac8da980c2/57de4172-493a-4929-a44a-b399cefe4ff8\",\r\n \"etag\": 12,\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/796c84b3-7e3b-411a-a103-157a9ba99783\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-04-19\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-04-19T19:41:43.3343552Z\",\r\n \"lastUpdatedDateTime\": \"2019-04-19T19:41:44.9821591Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_F1, US East, 1 Year\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 13,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:33.9434264Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:34.365302Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "796c84b3-7e3b-411a-a103-157a9ba99783" + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" } } \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalOff.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalOff.json new file mode 100644 index 0000000000000..8a867ecc5fadf --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalOff.json @@ -0,0 +1,149 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a419b62-0346-43fa-9cbb-5fd242310a63" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:35:06 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westus:4f7c72bb-a9ef-43bb-9c5f-e0190dc1f9f2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "6b5cb471-0732-4d47-a1bc-ca7672356617" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183507Z:6b5cb471-0732-4d47-a1bc-ca7672356617" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "998" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 15,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:58.781541Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:03.4718893Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": true,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"renew\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a28c7f64-feff-495d-87c0-95cb184a3d96" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "48" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:35:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" + ], + "x-ms-request-id": [ + "westus:f27cee0e-d796-4755-9cc7-14fd948e62d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "f34720b1-2848-4fe8-9c4a-26a1ac0219dc" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183531Z:f34720b1-2848-4fe8-9c4a-26a1ac0219dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "826" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 17,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:28.2471122Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:30.4353659Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": false\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" + } +} \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalOn.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalOn.json new file mode 100644 index 0000000000000..75f8ecc523bf0 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalOn.json @@ -0,0 +1,149 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecc69f73-ee10-498f-955d-b44288fd0a68" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:34:36 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westus:5f2f08db-da07-4ed3-a7cc-ad18dfe8cf11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "61b102e0-17ee-4e59-9eb5-c1436c038f21" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183437Z:61b102e0-17ee-4e59-9eb5-c1436c038f21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "999" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 13,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:33.9434264Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:34:34.365302Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"renew\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e2ec74dd-8265-43cd-b336-af5beebac3f0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "47" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:35:04 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" + ], + "x-ms-request-id": [ + "westus:21797bc2-91a1-453a-91a0-f2a29f0e637d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "2a6128b8-7237-48ef-9e91-7806436f4ae0" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183505Z:2a6128b8-7237-48ef-9e91-7806436f4ae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "824" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 15,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:34:58.781541Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:03.4718893Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" + } +} \ No newline at end of file diff --git a/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalProperties.json b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalProperties.json new file mode 100644 index 0000000000000..0b57d0cd76224 --- /dev/null +++ b/sdk/reservations/Microsoft.Azure.Management.Reservations/tests/SessionRecords/Reservations.Tests.ScenarioTests.ReservationTests/TestUpdateRenewalProperties.json @@ -0,0 +1,215 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucz9hcGktdmVyc2lvbj0yMDE5LTA0LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3576bc0d-86da-47c9-8731-8591591faf78" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:35:31 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westus:c365c073-d253-4ec1-8a4c-e21943250c9d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "9f9d0585-947c-4e12-82c7-da5055138fae" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183532Z:9f9d0585-947c-4e12-82c7-da5055138fae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1000" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 17,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:28.2471122Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:30.4353659Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": false,\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMQ==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"renew\": true,\r\n \"renewProperties\": {\r\n \"purchaseProperties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopeType\": \"Single\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"renew\": false,\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n }\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50763e97-8858-4bc0-a817-51c26bdd6bfe" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "770" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:35:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-test": [ + "{\"contact\":\"kgautam\",\"scenarios\":\"RITesting\",\"retention\":\"11/27/2019 6:29:51 PM\"}" + ], + "x-ms-request-id": [ + "westus:dcc226c4-7c68-4d79-b7b4-298aa7d01527" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "c398123d-f64c-40d1-a75f-4dfe183ab531" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183558Z:c398123d-f64c-40d1-a75f-4dfe183ab531" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "825" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 19,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:52.1887253Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:57.2669427Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"renew\": true\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096?api-version=2019-04-01&expand=renewProperties", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2FwYWNpdHkvcmVzZXJ2YXRpb25PcmRlcnMvOTA2NmU0OWItZjdhNi00YTU3LTk1ZTMtNDdjZGNiMDM5ZDdlL3Jlc2VydmF0aW9ucy9kNDg5Y2E2Yi0zZWNmLTQxNWItYmNjMC1jYmVlMmVmZjAwOTY/YXBpLXZlcnNpb249MjAxOS0wNC0wMSZleHBhbmQ9cmVuZXdQcm9wZXJ0aWVz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dec445d3-198e-445b-9672-6e778d85c838" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26614.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Reservations.AzureReservationAPIClient/1.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 29 Aug 2019 18:35:58 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "westus:1e752b62-4c57-4dce-8bb8-d6cc263141ab" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-correlation-request-id": [ + "4d6c869e-7546-4f55-92ea-30955bef44c5" + ], + "x-ms-routing-request-id": [ + "WESTUS:20190829T183558Z:4d6c869e-7546-4f55-92ea-30955bef44c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Content-Length": [ + "1468" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"id\": \"/providers/microsoft.capacity/reservationOrders/9066e49b-f7a6-4a57-95e3-47cdcb039d7e/reservations/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"type\": \"Microsoft.Capacity/reservationOrders/reservations\",\r\n \"name\": \"9066e49b-f7a6-4a57-95e3-47cdcb039d7e/d489ca6b-3ecf-415b-bcc0-cbee2eff0096\",\r\n \"etag\": 19,\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"quantity\": 3,\r\n \"provisioningState\": \"Succeeded\",\r\n \"expiryDate\": \"2020-08-29\",\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"effectiveDateTime\": \"2019-08-29T18:35:52.1887253Z\",\r\n \"lastUpdatedDateTime\": \"2019-08-29T18:35:57.2669427Z\",\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"instanceFlexibility\": \"On\",\r\n \"skuDescription\": \"Reserved VM Instance, Standard_D1, US West, 1 Year\",\r\n \"capabilities\": \"ApiReturnEnabled, ApiExchangeEnabled\",\r\n \"renew\": true,\r\n \"renewProperties\": {\r\n \"purchaseProperties\": {\r\n \"sku\": {\r\n \"name\": \"Standard_D1\"\r\n },\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"term\": \"P1Y\",\r\n \"billingPlan\": \"Upfront\",\r\n \"quantity\": 3,\r\n \"displayName\": \"TestPurchaseReservation\",\r\n \"appliedScopes\": [\r\n \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\"\r\n ],\r\n \"appliedScopeType\": \"Single\",\r\n \"reservedResourceProperties\": {\r\n \"instanceFlexibility\": \"On\"\r\n },\r\n \"reservedResourceType\": \"VirtualMachines\",\r\n \"renew\": false\r\n }\r\n }\r\n },\r\n \"term\": \"P1Y\",\r\n \"billingScopeId\": \"/subscriptions/d3ae48e5-dbb2-4618-afd4-fb1b8559cb80\",\r\n \"billingPlan\": \"Upfront\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "d3ae48e5-dbb2-4618-afd4-fb1b8559cb80" + } +} \ No newline at end of file