diff --git a/eng/mgmt/mgmtmetadata/marketplace_resource-manager.txt b/eng/mgmt/mgmtmetadata/marketplace_resource-manager.txt index 24c5b86de2e9..de9aff44a252 100644 --- a/eng/mgmt/mgmtmetadata/marketplace_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/marketplace_resource-manager.txt @@ -4,11 +4,11 @@ Commencing code generation Generating CSharp code Executing AutoRest command cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/marketplace/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\repo\azure-sdk-for-net\sdk -2020-11-05 14:11:22 UTC +2020-11-24 07:41:40 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 5d48a7dc324dd221d5e0455e3947c5fc39084132 +Commit: d0a293561d4e54e8cc08e5092076c11e636caf30 AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/IPrivateStoreOfferOperations.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/IPrivateStoreOfferOperations.cs index e9ce346450e1..5586be176f92 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/IPrivateStoreOfferOperations.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/IPrivateStoreOfferOperations.cs @@ -98,5 +98,30 @@ public partial interface IPrivateStoreOfferOperations /// Thrown when a required parameter is null /// Task> CreateOrUpdateWithHttpMessagesAsync(string privateStoreId, string offerId, Offer payload = default(Offer), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Delete Private store offer. This is a workaround. + /// + /// + /// The store ID - must use the tenant ID + /// + /// + /// The offer ID to update or delete + /// + /// + /// Possible values include: 'DeletePrivateStoreOffer', 'Ping' + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + Task PostWithHttpMessagesAsync(string privateStoreId, string offerId, string payload = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/IconKind.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Accessibility.cs similarity index 57% rename from sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/IconKind.cs rename to sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Accessibility.cs index 601190f029ec..9a844e74ddd6 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/IconKind.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Accessibility.cs @@ -12,14 +12,13 @@ namespace Microsoft.Azure.Management.Marketplace.Models { /// - /// Defines values for IconKind. + /// Defines values for Accessibility. /// - public static class IconKind + public static class Accessibility { - public const string Small = "Small"; - public const string Medium = "Medium"; - public const string Large = "Large"; - public const string Wide = "Wide"; - public const string Hero = "Hero"; + public const string Unknown = "Unknown"; + public const string Public = "Public"; + public const string PrivateTenantOnLevel = "PrivateTenantOnLevel"; + public const string PrivateSubscriptionOnLevel = "PrivateSubscriptionOnLevel"; } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Offer.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Offer.cs index 03469be40a62..6666b7181cae 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Offer.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Offer.cs @@ -54,7 +54,9 @@ public Offer() /// offer was not updated to db (true = not updated). If the allow list /// is identical to the existed one in db, the offer would not be /// updated. - public Offer(string id = default(string), string name = default(string), string type = default(string), string uniqueOfferId = default(string), string offerDisplayName = default(string), string publisherDisplayName = default(string), string eTag = default(string), string privateStoreId = default(string), string createdAt = default(string), string modifiedAt = default(string), IList specificPlanIdsLimitation = default(IList), bool? updateSuppressedDueIdempotence = default(bool?), IList iconFileUris = default(IList)) + /// Icon File Uris + /// Offer plans + public Offer(string id = default(string), string name = default(string), string type = default(string), string uniqueOfferId = default(string), string offerDisplayName = default(string), string publisherDisplayName = default(string), string eTag = default(string), string privateStoreId = default(string), string createdAt = default(string), string modifiedAt = default(string), IList specificPlanIdsLimitation = default(IList), bool? updateSuppressedDueIdempotence = default(bool?), IDictionary iconFileUris = default(IDictionary), IList plans = default(IList)) : base(id, name, type) { UniqueOfferId = uniqueOfferId; @@ -67,6 +69,7 @@ public Offer() SpecificPlanIdsLimitation = specificPlanIdsLimitation; UpdateSuppressedDueIdempotence = updateSuppressedDueIdempotence; IconFileUris = iconFileUris; + Plans = plans; CustomInit(); } @@ -133,9 +136,15 @@ public Offer() public bool? UpdateSuppressedDueIdempotence { get; set; } /// + /// Gets or sets icon File Uris /// [JsonProperty(PropertyName = "properties.iconFileUris")] - public IList IconFileUris { get; set; } + public IDictionary IconFileUris { get; set; } + /// + /// Gets or sets offer plans + /// + [JsonProperty(PropertyName = "properties.plans")] + public IList Plans { get; set; } } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation.cs index be8ca3cfeab8..dc14d9014852 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation.cs @@ -10,52 +10,13 @@ namespace Microsoft.Azure.Management.Marketplace.Models { - using Newtonsoft.Json; - using System.Linq; /// - /// Microsoft.Marketplace REST API operation + /// Defines values for Operation. /// - public partial class Operation + public static class Operation { - /// - /// Initializes a new instance of the Operation class. - /// - public Operation() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the Operation class. - /// - /// Operation name: - /// {provider}/{resource}/{operation} - /// The object that represents the - /// operation. - public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) - { - Name = name; - Display = display; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets operation name: {provider}/{resource}/{operation} - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets the object that represents the operation. - /// - [JsonProperty(PropertyName = "display")] - public OperationDisplay Display { get; set; } - + public const string DeletePrivateStoreOffer = "DeletePrivateStoreOffer"; + public const string Ping = "Ping"; } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation1.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation1.cs new file mode 100644 index 000000000000..274a38278e4f --- /dev/null +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Operation1.cs @@ -0,0 +1,61 @@ +// +// 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.Marketplace.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Microsoft.Marketplace REST API operation + /// + public partial class Operation1 + { + /// + /// Initializes a new instance of the Operation1 class. + /// + public Operation1() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the Operation1 class. + /// + /// Operation name: + /// {provider}/{resource}/{operation} + /// The object that represents the + /// operation. + public Operation1(string name = default(string), OperationDisplay display = default(OperationDisplay)) + { + Name = name; + Display = display; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets operation name: {provider}/{resource}/{operation} + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the object that represents the operation. + /// + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } + + } +} diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/OperationListResult.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/OperationListResult.cs index 71f28b4b7249..264924914ef2 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/OperationListResult.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/OperationListResult.cs @@ -36,7 +36,7 @@ public OperationListResult() /// supported by the Microsoft.Marketplace resource provider. /// URL to get the next set of operation list /// results if there are any. - public OperationListResult(IList value = default(IList), string nextLink = default(string)) + public OperationListResult(IList value = default(IList), string nextLink = default(string)) { Value = value; NextLink = nextLink; @@ -53,7 +53,7 @@ public OperationListResult() /// the Microsoft.Marketplace resource provider. /// [JsonProperty(PropertyName = "value")] - public IList Value { get; set; } + public IList Value { get; set; } /// /// Gets URL to get the next set of operation list results if there are diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Plan.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Plan.cs index 7167c7cf0495..3ac59c296e5e 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Plan.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/Models/Plan.cs @@ -30,11 +30,19 @@ public Plan() /// Text identifier for this plan /// Friendly name for the plan for /// display in the marketplace - public Plan(string skuId = default(string), string planId = default(string), string planDisplayName = default(string)) + /// Plan accessibility. Possible values + /// include: 'Unknown', 'Public', 'PrivateTenantOnLevel', + /// 'PrivateSubscriptionOnLevel' + /// Alternative stack type + /// Stack type (classic or arm) + public Plan(string skuId = default(string), string planId = default(string), string planDisplayName = default(string), string accessibility = default(string), string altStackReference = default(string), string stackType = default(string)) { SkuId = skuId; PlanId = planId; PlanDisplayName = planDisplayName; + Accessibility = accessibility; + AltStackReference = altStackReference; + StackType = stackType; CustomInit(); } @@ -61,5 +69,25 @@ public Plan() [JsonProperty(PropertyName = "planDisplayName")] public string PlanDisplayName { get; private set; } + /// + /// Gets or sets plan accessibility. Possible values include: + /// 'Unknown', 'Public', 'PrivateTenantOnLevel', + /// 'PrivateSubscriptionOnLevel' + /// + [JsonProperty(PropertyName = "accessibility")] + public string Accessibility { get; set; } + + /// + /// Gets alternative stack type + /// + [JsonProperty(PropertyName = "altStackReference")] + public string AltStackReference { get; private set; } + + /// + /// Gets stack type (classic or arm) + /// + [JsonProperty(PropertyName = "stackType")] + public string StackType { get; private set; } + } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperations.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperations.cs index ea8e8e6bd0f1..6fd7fdb167ec 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperations.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperations.cs @@ -596,5 +596,180 @@ internal PrivateStoreOfferOperations(MarketplaceManagementClient client) return _result; } + /// + /// Delete Private store offer. This is a workaround. + /// + /// + /// The store ID - must use the tenant ID + /// + /// + /// The offer ID to update or delete + /// + /// + /// Possible values include: 'DeletePrivateStoreOffer', 'Ping' + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task PostWithHttpMessagesAsync(string privateStoreId, string offerId, string payload = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (privateStoreId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "privateStoreId"); + } + if (offerId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "offerId"); + } + if (Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("payload", payload); + tracingParameters.Add("privateStoreId", privateStoreId); + tracingParameters.Add("offerId", offerId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "Post", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri.AbsoluteUri; + var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Marketplace/privateStores/{privateStoreId}/offers/{offerId}").ToString(); + _url = _url.Replace("{privateStoreId}", System.Uri.EscapeDataString(privateStoreId)); + _url = _url.Replace("{offerId}", System.Uri.EscapeDataString(offerId)); + 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(payload != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(payload, 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 ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _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(); + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperationsExtensions.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperationsExtensions.cs index b2413e6dc2df..f350569cb62e 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperationsExtensions.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/PrivateStoreOfferOperationsExtensions.cs @@ -142,5 +142,48 @@ public static Offer Get(this IPrivateStoreOfferOperations operations, string pri } } + /// + /// Delete Private store offer. This is a workaround. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The store ID - must use the tenant ID + /// + /// + /// The offer ID to update or delete + /// + /// + /// Possible values include: 'DeletePrivateStoreOffer', 'Ping' + /// + public static void Post(this IPrivateStoreOfferOperations operations, string privateStoreId, string offerId, string payload = default(string)) + { + operations.PostAsync(privateStoreId, offerId, payload).GetAwaiter().GetResult(); + } + + /// + /// Delete Private store offer. This is a workaround. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The store ID - must use the tenant ID + /// + /// + /// The offer ID to update or delete + /// + /// + /// Possible values include: 'DeletePrivateStoreOffer', 'Ping' + /// + /// + /// The cancellation token. + /// + public static async Task PostAsync(this IPrivateStoreOfferOperations operations, string privateStoreId, string offerId, string payload = default(string), CancellationToken cancellationToken = default(CancellationToken)) + { + (await operations.PostWithHttpMessagesAsync(privateStoreId, offerId, payload, null, cancellationToken).ConfigureAwait(false)).Dispose(); + } + } } diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/SdkInfo_MarketplaceManagementClient.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/SdkInfo_MarketplaceManagementClient.cs index 9a6b7a300d2c..d4c47e248bae 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/SdkInfo_MarketplaceManagementClient.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Generated/SdkInfo_MarketplaceManagementClient.cs @@ -34,7 +34,7 @@ public static IEnumerable> ApiInfo_MarketplaceMana public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/marketplace/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=C:\\repo\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "5d48a7dc324dd221d5e0455e3947c5fc39084132"; + public static readonly String GithubCommidId = "d0a293561d4e54e8cc08e5092076c11e636caf30"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Microsoft.Azure.Management.Marketplace.csproj b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Microsoft.Azure.Management.Marketplace.csproj index 7611581aeb78..53c3b860e33e 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Microsoft.Azure.Management.Marketplace.csproj +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Microsoft.Azure.Management.Marketplace.csproj @@ -6,7 +6,7 @@ Microsoft.Azure.Management.Marketplace Microsoft Azure Marketplace Library - 1.2.0 + 2.0.0-preview Microsoft.Azure.Management.Marketplace management;marketplace;privatestore diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Properties/AssemblyInfo.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Properties/AssemblyInfo.cs index f08b6e4a38e8..168bc78a72f8 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Properties/AssemblyInfo.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Marketplace Management Library")] [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Marketplace.")] -[assembly: AssemblyVersion("1.2.0")] -[assembly: AssemblyFileVersion("1.2.0")] +[assembly: AssemblyVersion("2.0.0")] +[assembly: AssemblyFileVersion("2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/Microsoft.Azure.Management.Marketplace.Tests.csproj b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/Microsoft.Azure.Management.Marketplace.Tests.csproj index eda76ab05271..9b2a8031367e 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/Microsoft.Azure.Management.Marketplace.Tests.csproj +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/Microsoft.Azure.Management.Marketplace.Tests.csproj @@ -22,4 +22,7 @@ + + + \ No newline at end of file diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/ScenarioTests/PrivateStoreTests.cs b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/ScenarioTests/PrivateStoreTests.cs index d661e2c6ce9b..5e93d966a97c 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/ScenarioTests/PrivateStoreTests.cs +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/ScenarioTests/PrivateStoreTests.cs @@ -54,7 +54,7 @@ public void PrivateStoreOffersTest() { var privateStoreId = "a70d384d-ec34-47dd-9d38-ec6df452cba1"; var offerId = "data3-limited-1019419.d3_azure_managed_services"; - var planId = "d3-azure-cost-management"; + var planId = "data3-managed-azure-plan"; using (var context = MockContext.Start(this.GetType())) { diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoreOffersTest.json b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoreOffersTest.json index 65e1f18b6e29..0a8be8c21275 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoreOffersTest.json +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoreOffersTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c7ed086-cba4-477b-af2a-fd0623d21c3d" + "05112780-23b4-45c6-b4d7-39350af4538b" ], "accept-language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:23:57 GMT" + "Tue, 24 Nov 2020 08:43:29 GMT" ], "Pragma": [ "no-cache" @@ -33,8 +33,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=6baab673920cdd72d5292ed70f53157373a58e78fa4d23722efa3ae6748c9e7b;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=6baab673920cdd72d5292ed70f53157373a58e78fa4d23722efa3ae6748c9e7b;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=e942fac4c3842c04fc2139440c5a0682d1c4bfb4f77eaeddd9a5ebf14cc8b59d;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=e942fac4c3842c04fc2139440c5a0682d1c4bfb4f77eaeddd9a5ebf14cc8b59d;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -46,7 +46,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -55,22 +55,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "cf0178a6-5fd6-4db0-9fb7-2a7dd46d18cd" + "fb01a3f8-951d-42d6-af31-70672be3b487" ], "x-ms-correlation-request-id": [ - "cf0178a6-5fd6-4db0-9fb7-2a7dd46d18cd" + "fb01a3f8-951d-42d6-af31-70672be3b487" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142358Z:cf0178a6-5fd6-4db0-9fb7-2a7dd46d18cd" + "NORTHEUROPE:20201124T084329Z:fb01a3f8-951d-42d6-af31-70672be3b487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "Content-Length": [ - "12" + "2797" ], "Content-Type": [ "application/json; charset=utf-8" @@ -79,17 +79,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/ingrammicro.ingrammicromsp\",\r\n \"name\": \"ingrammicro.ingrammicromsp\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"ingrammicro.ingrammicromsp\",\r\n \"specificPlanIdsLimitation\": null,\r\n \"eTag\": \"\\\"1100092b-0000-0100-0000-5fba654a0000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/RedHat.RHEL_7\",\r\n \"name\": \"RedHat.RHEL_7\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"RedHat.RHEL_7\",\r\n \"specificPlanIdsLimitation\": [\r\n \"RedHatEnterpriseLinux72-ARM\"\r\n ],\r\n \"eTag\": \"\\\"1100292b-0000-0100-0000-5fba65510000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/apps-4-rent.quickfx-administration\",\r\n \"name\": \"apps-4-rent.quickfx-administration\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"apps-4-rent.quickfx-administration\",\r\n \"specificPlanIdsLimitation\": null,\r\n \"eTag\": \"\\\"11003a2b-0000-0100-0000-5fba65520000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/Canonical.UbuntuServer1804LTS\",\r\n \"name\": \"Canonical.UbuntuServer1804LTS\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"Canonical.UbuntuServer1804LTS\",\r\n \"specificPlanIdsLimitation\": [\r\n \"UbuntuServer1804LTS-ARM\"\r\n ],\r\n \"eTag\": \"\\\"11009e34-0000-0100-0000-5fba78e60000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/tibco-software.tci_saas\",\r\n \"name\": \"tibco-software.tci_saas\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"tibco-software.tci_saas\",\r\n \"specificPlanIdsLimitation\": [\r\n \"tci_basic\"\r\n ],\r\n \"eTag\": \"\\\"1700ba56-0000-0100-0000-5fbbb6a20000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n },\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/tidal-migrations.tidalmg_com\",\r\n \"name\": \"tidal-migrations.tidalmg_com\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"tidal-migrations.tidalmg_com\",\r\n \"specificPlanIdsLimitation\": [\r\n \"tidalmg_com-large3\"\r\n ],\r\n \"eTag\": \"\\\"17006950-0000-0100-0000-5fbbb62e0000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { "RequestUri": "/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/data3-limited-1019419.d3_azure_managed_services?api-version=2020-01-01", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFya2V0cGxhY2UvcHJpdmF0ZVN0b3Jlcy9hNzBkMzg0ZC1lYzM0LTQ3ZGQtOWQzOC1lYzZkZjQ1MmNiYTEvb2ZmZXJzL2RhdGEzLWxpbWl0ZWQtMTAxOTQxOS5kM19henVyZV9tYW5hZ2VkX3NlcnZpY2VzP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"eTag\": \"57002de5-0000-0300-0000-5eaee7e50000\",\r\n \"specificPlanIdsLimitation\": [\r\n \"d3-azure-cost-management\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"eTag\": \"57002de5-0000-0300-0000-5eaee7e50000\",\r\n \"specificPlanIdsLimitation\": [\r\n \"data3-managed-azure-plan\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d812b670-1ba3-4637-8c37-80acde1febcb" + "08259161-ec93-425b-94d8-d1c3e87cfeae" ], "accept-language": [ "en-US" @@ -98,7 +98,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -112,7 +112,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:23:58 GMT" + "Tue, 24 Nov 2020 08:43:29 GMT" ], "Pragma": [ "no-cache" @@ -121,8 +121,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=36c1f67f56e94520a7fc2a8c64c64d24f3d68a98940e7f63578774151d0c83a8;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=36c1f67f56e94520a7fc2a8c64c64d24f3d68a98940e7f63578774151d0c83a8;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=e11145e197c6f01e002a4d98ef13f29c7257988fe3b830b46359ccbc96d662ce;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=e11145e197c6f01e002a4d98ef13f29c7257988fe3b830b46359ccbc96d662ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -134,7 +134,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -146,13 +146,13 @@ "1199" ], "x-ms-request-id": [ - "1947d342-6557-480e-95c9-e0c3df889228" + "eeb660c1-f622-484b-8f67-a97ef8cc8eab" ], "x-ms-correlation-request-id": [ - "1947d342-6557-480e-95c9-e0c3df889228" + "eeb660c1-f622-484b-8f67-a97ef8cc8eab" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142358Z:1947d342-6557-480e-95c9-e0c3df889228" + "NORTHEUROPE:20201124T084329Z:eeb660c1-f622-484b-8f67-a97ef8cc8eab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -167,7 +167,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/data3-limited-1019419.d3_azure_managed_services\",\r\n \"name\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"specificPlanIdsLimitation\": [\r\n \"d3-azure-cost-management\"\r\n ],\r\n \"eTag\": \"\\\"570060c7-0000-0100-0000-5fa40afe0000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/data3-limited-1019419.d3_azure_managed_services\",\r\n \"name\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"specificPlanIdsLimitation\": [\r\n \"data3-managed-azure-plan\"\r\n ],\r\n \"eTag\": \"\\\"1f004f6b-0000-0100-0000-5fbcc7b10000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n}", "StatusCode": 200 }, { @@ -177,7 +177,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e11bb9b2-ddf6-4148-8b61-71b8e6f7860e" + "d3f017e2-e4ca-4aac-9a85-cb7b23d7ec3e" ], "accept-language": [ "en-US" @@ -186,7 +186,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -194,7 +194,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:23:58 GMT" + "Tue, 24 Nov 2020 08:43:29 GMT" ], "Pragma": [ "no-cache" @@ -203,8 +203,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=6c5458dd548284d7396cd2cba264e633b6118968d745d1e82e3c3f7fc14794d7;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=6c5458dd548284d7396cd2cba264e633b6118968d745d1e82e3c3f7fc14794d7;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=9a52859189c53f2cf9a5d91a402fbe51e76b0fd3c8388d99085fbc1008beb3a5;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=9a52859189c53f2cf9a5d91a402fbe51e76b0fd3c8388d99085fbc1008beb3a5;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -216,7 +216,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -225,16 +225,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "6e168925-78a5-4fa3-816e-9a2a94f37803" + "549e8164-d03c-4b13-a999-3ff865d8fbcd" ], "x-ms-correlation-request-id": [ - "6e168925-78a5-4fa3-816e-9a2a94f37803" + "549e8164-d03c-4b13-a999-3ff865d8fbcd" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142359Z:6e168925-78a5-4fa3-816e-9a2a94f37803" + "NORTHEUROPE:20201124T084330Z:549e8164-d03c-4b13-a999-3ff865d8fbcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,7 +249,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/data3-limited-1019419.d3_azure_managed_services\",\r\n \"name\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"specificPlanIdsLimitation\": [\r\n \"d3-azure-cost-management\"\r\n ],\r\n \"eTag\": \"\\\"570060c7-0000-0100-0000-5fa40afe0000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/data3-limited-1019419.d3_azure_managed_services\",\r\n \"name\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"data3-limited-1019419.d3_azure_managed_services\",\r\n \"specificPlanIdsLimitation\": [\r\n \"data3-managed-azure-plan\"\r\n ],\r\n \"eTag\": \"\\\"1f004f6b-0000-0100-0000-5fbcc7b10000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n}", "StatusCode": 200 }, { @@ -259,7 +259,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e164420-2925-4c35-89ca-704b013d156a" + "0bdc7b51-ab86-4e41-9d5f-a961d89b29cb" ], "accept-language": [ "en-US" @@ -268,7 +268,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -276,7 +276,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:23:58 GMT" + "Tue, 24 Nov 2020 08:43:30 GMT" ], "Pragma": [ "no-cache" @@ -285,8 +285,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=6a220fd8c7f3ee2a32fbcf063d5ce235d5915c3e7a850e9910a88d3d6a69220e;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=6a220fd8c7f3ee2a32fbcf063d5ce235d5915c3e7a850e9910a88d3d6a69220e;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=26d315eb5e91381caffe0245752f36a80d2e928f8855e80e2e0bdecbb83018a8;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=26d315eb5e91381caffe0245752f36a80d2e928f8855e80e2e0bdecbb83018a8;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "X-Content-Type-Options": [ "nosniff" @@ -295,7 +295,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -307,13 +307,13 @@ "14999" ], "x-ms-request-id": [ - "97860ca6-98f0-4beb-9ca4-1e3b51803993" + "832ee0be-ce3c-4120-b94d-4d1bae12962c" ], "x-ms-correlation-request-id": [ - "97860ca6-98f0-4beb-9ca4-1e3b51803993" + "832ee0be-ce3c-4120-b94d-4d1bae12962c" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142359Z:97860ca6-98f0-4beb-9ca4-1e3b51803993" + "NORTHEUROPE:20201124T084330Z:832ee0be-ce3c-4120-b94d-4d1bae12962c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStorePrivateOffersTest.json b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStorePrivateOffersTest.json index 472a39145558..90fdc012bf10 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStorePrivateOffersTest.json +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStorePrivateOffersTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "747be498-af1c-4ea0-9c5b-57f19c209de5" + "cb1d7920-0b6d-4680-8cc9-6cd91f3eacb7" ], "accept-language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:02 GMT" + "Tue, 24 Nov 2020 08:43:33 GMT" ], "Pragma": [ "no-cache" @@ -33,8 +33,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=d622de54c3753ccd6cdf44d424f5efd94a586b5eef37c8a1d1dadbd78cd9527e;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=d622de54c3753ccd6cdf44d424f5efd94a586b5eef37c8a1d1dadbd78cd9527e;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=36c1f67f56e94520a7fc2a8c64c64d24f3d68a98940e7f63578774151d0c83a8;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=36c1f67f56e94520a7fc2a8c64c64d24f3d68a98940e7f63578774151d0c83a8;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -46,7 +46,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -58,13 +58,13 @@ "14999" ], "x-ms-request-id": [ - "7b4200d5-8b6f-41ff-9e3a-9f97cb8fcc64" + "83503814-755e-4e37-9ffb-a9ac6737524f" ], "x-ms-correlation-request-id": [ - "7b4200d5-8b6f-41ff-9e3a-9f97cb8fcc64" + "83503814-755e-4e37-9ffb-a9ac6737524f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142403Z:7b4200d5-8b6f-41ff-9e3a-9f97cb8fcc64" + "NORTHEUROPE:20201124T084334Z:83503814-755e-4e37-9ffb-a9ac6737524f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99879af5-279f-4266-9607-04b9bc274925" + "ad416347-6a8c-4616-9e48-cb562dbd2b74" ], "accept-language": [ "en-US" @@ -98,7 +98,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -106,7 +106,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:07 GMT" + "Tue, 24 Nov 2020 08:43:35 GMT" ], "Pragma": [ "no-cache" @@ -115,8 +115,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=b17cc9a0532bdc564a29f04cf70a885ddef9f5d164f3cb03e2aff02fc053cee9;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=b17cc9a0532bdc564a29f04cf70a885ddef9f5d164f3cb03e2aff02fc053cee9;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=6c5458dd548284d7396cd2cba264e633b6118968d745d1e82e3c3f7fc14794d7;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=6c5458dd548284d7396cd2cba264e633b6118968d745d1e82e3c3f7fc14794d7;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -128,7 +128,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -140,13 +140,13 @@ "14998" ], "x-ms-request-id": [ - "ae866615-633b-4e65-9953-96c4094eb7cc" + "1cb1b274-40ea-4ae1-99c1-ad0a9202ea85" ], "x-ms-correlation-request-id": [ - "ae866615-633b-4e65-9953-96c4094eb7cc" + "1cb1b274-40ea-4ae1-99c1-ad0a9202ea85" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142407Z:ae866615-633b-4e65-9953-96c4094eb7cc" + "NORTHEUROPE:20201124T084335Z:1cb1b274-40ea-4ae1-99c1-ad0a9202ea85" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -161,7 +161,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"name\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"specificPlanIdsLimitation\": [\r\n \"test-managed-app\"\r\n ],\r\n \"eTag\": \"\\\"570007c8-0000-0100-0000-5fa40b050000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"name\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"specificPlanIdsLimitation\": [\r\n \"test-managed-app\"\r\n ],\r\n \"eTag\": \"\\\"1f00506b-0000-0100-0000-5fbcc7b60000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "afc97775-f595-4534-bc0c-b29bf355cf66" + "dc050e8d-7a97-4eee-a305-ce7ad2880ea9" ], "accept-language": [ "en-US" @@ -180,7 +180,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -188,7 +188,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:08 GMT" + "Tue, 24 Nov 2020 08:43:35 GMT" ], "Pragma": [ "no-cache" @@ -197,8 +197,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=0b5e99afed75398be21ff2ebf0c9dcb26e2ce57d603f1a5963cc771267dcb8fd;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=0b5e99afed75398be21ff2ebf0c9dcb26e2ce57d603f1a5963cc771267dcb8fd;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=b04ffa86539d7689519d8eb5d5e7423177e93a8afca318b1f76e4c8444a7d2a2;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=b04ffa86539d7689519d8eb5d5e7423177e93a8afca318b1f76e4c8444a7d2a2;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -210,7 +210,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -222,13 +222,13 @@ "14997" ], "x-ms-request-id": [ - "36e16134-0fc4-4021-be25-e683c839dcff" + "31583be9-4aaf-4479-942f-a5e7fc194ade" ], "x-ms-correlation-request-id": [ - "36e16134-0fc4-4021-be25-e683c839dcff" + "31583be9-4aaf-4479-942f-a5e7fc194ade" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142409Z:36e16134-0fc4-4021-be25-e683c839dcff" + "NORTHEUROPE:20201124T084335Z:31583be9-4aaf-4479-942f-a5e7fc194ade" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -253,7 +253,7 @@ "RequestBody": "{\r\n \"properties\": {\r\n \"specificPlanIdsLimitation\": [\r\n \"test-managed-app\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8192d5e9-2144-40c1-8e58-30351c5d3cba" + "f5016188-2fb5-4d19-942f-59f398b113a6" ], "accept-language": [ "en-US" @@ -262,7 +262,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,7 +276,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:05 GMT" + "Tue, 24 Nov 2020 08:43:34 GMT" ], "Pragma": [ "no-cache" @@ -285,8 +285,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=1440deb667c55969c63cb5e7b1f96587afe9a3ebd6ade131aa33ebc2ccbfbc1a;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=1440deb667c55969c63cb5e7b1f96587afe9a3ebd6ade131aa33ebc2ccbfbc1a;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=422ac376cf9a5b730208f246fe2886eb9014a2316736b65af73d6017dda009cc;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=422ac376cf9a5b730208f246fe2886eb9014a2316736b65af73d6017dda009cc;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -298,7 +298,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -310,13 +310,13 @@ "1199" ], "x-ms-request-id": [ - "f48171eb-12f8-4157-b9c5-535956028553" + "7ecb0d6e-a5d8-453a-95e6-d904f0cb6c22" ], "x-ms-correlation-request-id": [ - "f48171eb-12f8-4157-b9c5-535956028553" + "7ecb0d6e-a5d8-453a-95e6-d904f0cb6c22" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142405Z:f48171eb-12f8-4157-b9c5-535956028553" + "NORTHEUROPE:20201124T084335Z:7ecb0d6e-a5d8-453a-95e6-d904f0cb6c22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -331,7 +331,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"name\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"specificPlanIdsLimitation\": [\r\n \"test-managed-app\"\r\n ],\r\n \"eTag\": \"\\\"570007c8-0000-0100-0000-5fa40b050000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1/offers/test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"name\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"type\": \"Microsoft.Marketplace/privateStores/offers\",\r\n \"properties\": {\r\n \"uniqueOfferId\": \"test_test_pmc2pc1.test-managed-app-private-indirect-gov\",\r\n \"specificPlanIdsLimitation\": [\r\n \"test-managed-app\"\r\n ],\r\n \"eTag\": \"\\\"1f00506b-0000-0100-0000-5fbcc7b60000\\\"\",\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"updateSuppressedDueIdempotence\": false\r\n }\r\n}", "StatusCode": 200 }, { @@ -341,7 +341,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96ef4aa5-42d1-4642-875f-858746b82b9d" + "ab5910c8-27ac-4332-b975-d5dac85b4158" ], "accept-language": [ "en-US" @@ -350,7 +350,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -358,7 +358,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:07 GMT" + "Tue, 24 Nov 2020 08:43:35 GMT" ], "Pragma": [ "no-cache" @@ -367,8 +367,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=d6ae8b7a65d95de66d1df278be8fa7627f54430418dbf9ed215d6788c90c7d90;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=d6ae8b7a65d95de66d1df278be8fa7627f54430418dbf9ed215d6788c90c7d90;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=6a220fd8c7f3ee2a32fbcf063d5ce235d5915c3e7a850e9910a88d3d6a69220e;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=6a220fd8c7f3ee2a32fbcf063d5ce235d5915c3e7a850e9910a88d3d6a69220e;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "X-Content-Type-Options": [ "nosniff" @@ -377,7 +377,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:master.ce5dbee64.201123-1217)" ], "X-AspNet-Version": [ "4.0.30319" @@ -389,13 +389,13 @@ "14999" ], "x-ms-request-id": [ - "e58ef72a-9b4c-4a46-b54b-d0bc9a806e2b" + "7f6c0487-0d0c-462a-8df0-6ee95ec9990f" ], "x-ms-correlation-request-id": [ - "e58ef72a-9b4c-4a46-b54b-d0bc9a806e2b" + "7f6c0487-0d0c-462a-8df0-6ee95ec9990f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142408Z:e58ef72a-9b4c-4a46-b54b-d0bc9a806e2b" + "NORTHEUROPE:20201124T084335Z:7f6c0487-0d0c-462a-8df0-6ee95ec9990f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" diff --git a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoresTest.json b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoresTest.json index 893d681c224c..f75143a3a22f 100644 --- a/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoresTest.json +++ b/sdk/marketplace/Microsoft.Azure.Management.Marketplace/tests/SessionRecords/PrivateStoreTests/PrivateStoresTest.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c48f736-37a3-4b65-9583-d2014dca4538" + "5d0ba5f2-a6b1-47d3-89fb-d464e53a76cd" ], "accept-language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -24,7 +24,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:11 GMT" + "Tue, 24 Nov 2020 08:43:39 GMT" ], "Pragma": [ "no-cache" @@ -33,8 +33,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=e11145e197c6f01e002a4d98ef13f29c7257988fe3b830b46359ccbc96d662ce;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=e11145e197c6f01e002a4d98ef13f29c7257988fe3b830b46359ccbc96d662ce;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=d622de54c3753ccd6cdf44d424f5efd94a586b5eef37c8a1d1dadbd78cd9527e;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=d622de54c3753ccd6cdf44d424f5efd94a586b5eef37c8a1d1dadbd78cd9527e;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -46,7 +46,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:diyakobo/logedClaim.424779904.201123-0347)" ], "X-AspNet-Version": [ "4.0.30319" @@ -58,13 +58,13 @@ "14998" ], "x-ms-request-id": [ - "8b6b16c4-8680-4c15-99bc-3f6231f9c6e9" + "b9ac24e5-103e-41cb-a74f-9cf561c02c86" ], "x-ms-correlation-request-id": [ - "8b6b16c4-8680-4c15-99bc-3f6231f9c6e9" + "b9ac24e5-103e-41cb-a74f-9cf561c02c86" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142412Z:8b6b16c4-8680-4c15-99bc-3f6231f9c6e9" + "NORTHEUROPE:20201124T084339Z:b9ac24e5-103e-41cb-a74f-9cf561c02c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -79,7 +79,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"disabled\",\r\n \"eTag\": \"\\\"0000e008-0000-0100-0000-5f9ff88f0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"disabled\",\r\n \"eTag\": \"\\\"42041b21-0000-0100-0000-5fbcba210000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be2dafc7-a26c-487e-bed0-b270a0780b4e" + "02a7592b-be73-4917-8d09-c32fc1c44808" ], "accept-language": [ "en-US" @@ -98,7 +98,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ] }, "ResponseHeaders": { @@ -106,7 +106,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:12 GMT" + "Tue, 24 Nov 2020 08:43:41 GMT" ], "Pragma": [ "no-cache" @@ -115,8 +115,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=26d315eb5e91381caffe0245752f36a80d2e928f8855e80e2e0bdecbb83018a8;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=26d315eb5e91381caffe0245752f36a80d2e928f8855e80e2e0bdecbb83018a8;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=1440deb667c55969c63cb5e7b1f96587afe9a3ebd6ade131aa33ebc2ccbfbc1a;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=1440deb667c55969c63cb5e7b1f96587afe9a3ebd6ade131aa33ebc2ccbfbc1a;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -128,7 +128,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:diyakobo/logedClaim.424779904.201123-0347)" ], "X-AspNet-Version": [ "4.0.30319" @@ -140,13 +140,13 @@ "14997" ], "x-ms-request-id": [ - "79b6965a-c1ae-4c50-b052-eb9299d89066" + "208c6d47-1bea-4328-b175-e739a9d899ac" ], "x-ms-correlation-request-id": [ - "79b6965a-c1ae-4c50-b052-eb9299d89066" + "208c6d47-1bea-4328-b175-e739a9d899ac" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142412Z:79b6965a-c1ae-4c50-b052-eb9299d89066" + "NORTHEUROPE:20201124T084341Z:208c6d47-1bea-4328-b175-e739a9d899ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -161,17 +161,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"enabled\",\r\n \"eTag\": \"\\\"00007d1c-0000-0100-0000-5fa40b0c0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"enabled\",\r\n \"eTag\": \"\\\"42042921-0000-0100-0000-5fbcc7bc0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { "RequestUri": "/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1?api-version=2020-01-01", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFya2V0cGxhY2UvcHJpdmF0ZVN0b3Jlcy9hNzBkMzg0ZC1lYzM0LTQ3ZGQtOWQzOC1lYzZkZjQ1MmNiYTE/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"availability\": \"enabled\",\r\n \"eTag\": \"\\\"0000e008-0000-0100-0000-5f9ff88f0000\\\"\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"availability\": \"enabled\",\r\n \"eTag\": \"\\\"42041b21-0000-0100-0000-5fbcba210000\\\"\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a6a4dd75-001e-4308-8e10-4760b9220a06" + "ab044eec-c4c0-424c-a2c7-b1a257629181" ], "accept-language": [ "en-US" @@ -180,7 +180,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -194,7 +194,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:12 GMT" + "Tue, 24 Nov 2020 08:43:40 GMT" ], "Pragma": [ "no-cache" @@ -203,8 +203,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=9a52859189c53f2cf9a5d91a402fbe51e76b0fd3c8388d99085fbc1008beb3a5;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=9a52859189c53f2cf9a5d91a402fbe51e76b0fd3c8388d99085fbc1008beb3a5;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=a9d4cad7bd10f6fe1eb98ddbba36ff70b73ceb123fb4e398cf4ea51c69240ec9;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=a9d4cad7bd10f6fe1eb98ddbba36ff70b73ceb123fb4e398cf4ea51c69240ec9;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -216,7 +216,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:diyakobo/logedClaim.424779904.201123-0347)" ], "X-AspNet-Version": [ "4.0.30319" @@ -228,13 +228,13 @@ "1199" ], "x-ms-request-id": [ - "0af18e81-fb69-42d0-8f92-6d6fde7491d2" + "06de40c4-d761-49fb-9563-59494f14a4dc" ], "x-ms-correlation-request-id": [ - "0af18e81-fb69-42d0-8f92-6d6fde7491d2" + "06de40c4-d761-49fb-9563-59494f14a4dc" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142412Z:0af18e81-fb69-42d0-8f92-6d6fde7491d2" + "NORTHEUROPE:20201124T084340Z:06de40c4-d761-49fb-9563-59494f14a4dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,17 +249,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"enabled\",\r\n \"eTag\": \"\\\"00007d1c-0000-0100-0000-5fa40b0c0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"enabled\",\r\n \"eTag\": \"\\\"42042921-0000-0100-0000-5fbcc7bc0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1?api-version=2020-01-01", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFya2V0cGxhY2UvcHJpdmF0ZVN0b3Jlcy9hNzBkMzg0ZC1lYzM0LTQ3ZGQtOWQzOC1lYzZkZjQ1MmNiYTE/YXBpLXZlcnNpb249MjAyMC0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"availability\": \"disabled\",\r\n \"eTag\": \"\\\"00007d1c-0000-0100-0000-5fa40b0c0000\\\"\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"availability\": \"disabled\",\r\n \"eTag\": \"\\\"42042921-0000-0100-0000-5fbcc7bc0000\\\"\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ed90b3c5-6159-4c19-b1d6-9985dd83919c" + "4c00f366-2954-4109-b8cf-69b9cf2a268f" ], "accept-language": [ "en-US" @@ -268,7 +268,7 @@ "FxVersion/4.6.26614.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/1.2.0" + "Microsoft.Azure.Management.Marketplace.MarketplaceManagementClient/2.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -282,7 +282,7 @@ "no-cache" ], "Date": [ - "Thu, 05 Nov 2020 14:24:12 GMT" + "Tue, 24 Nov 2020 08:43:42 GMT" ], "Pragma": [ "no-cache" @@ -291,8 +291,8 @@ "Microsoft-IIS/10.0" ], "Set-Cookie": [ - "ARRAffinity=6baab673920cdd72d5292ed70f53157373a58e78fa4d23722efa3ae6748c9e7b;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", - "ARRAffinitySameSite=6baab673920cdd72d5292ed70f53157373a58e78fa4d23722efa3ae6748c9e7b;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" + "ARRAffinity=b17cc9a0532bdc564a29f04cf70a885ddef9f5d164f3cb03e2aff02fc053cee9;Path=/;HttpOnly;Secure;Domain=df.marketplacerp.azure-test.net", + "ARRAffinitySameSite=b17cc9a0532bdc564a29f04cf70a885ddef9f5d164f3cb03e2aff02fc053cee9;Path=/;HttpOnly;SameSite=None;Secure;Domain=df.marketplacerp.azure-test.net" ], "Vary": [ "Accept-Encoding" @@ -304,7 +304,7 @@ "1; mode=block" ], "x-ms-version": [ - "1.0.0.1328 (AzureUX-MarketPlaceRP:master.bb2a3b38a.201104-2248)" + "1.0.0.1363 (AzureUX-MarketPlaceRP:diyakobo/logedClaim.424779904.201123-0347)" ], "X-AspNet-Version": [ "4.0.30319" @@ -316,13 +316,13 @@ "1198" ], "x-ms-request-id": [ - "f726849c-85b9-4d8f-a3de-4172f90dfd67" + "53a8415e-3a1e-4597-8b31-309559197173" ], "x-ms-correlation-request-id": [ - "f726849c-85b9-4d8f-a3de-4172f90dfd67" + "53a8415e-3a1e-4597-8b31-309559197173" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20201105T142413Z:f726849c-85b9-4d8f-a3de-4172f90dfd67" + "NORTHEUROPE:20201124T084342Z:53a8415e-3a1e-4597-8b31-309559197173" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -337,7 +337,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"disabled\",\r\n \"eTag\": \"\\\"00007e1c-0000-0100-0000-5fa40b0d0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Marketplace/privateStores/a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"name\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"type\": \"Microsoft.Marketplace/privateStores\",\r\n \"properties\": {\r\n \"privateStoreId\": \"a70d384d-ec34-47dd-9d38-ec6df452cba1\",\r\n \"availability\": \"disabled\",\r\n \"eTag\": \"\\\"42042a21-0000-0100-0000-5fbcc7bd0000\\\"\",\r\n \"privateStoreName\": \"JEDI\",\r\n \"tenantIds\": [\r\n \"bb0c79d9-b724-425d-ab37-8b80ccacd03a\",\r\n \"3bc6b734-0508-42db-849e-7a60818a96fc\"\r\n ],\r\n \"tenantTag\": \"azure.microsoft.com/usgovtenant=true\",\r\n \"customerTag\": \"TSZ\",\r\n \"hasCommercialAssociation\": true,\r\n \"hasMultiTenantAssociation\": true,\r\n \"isGov\": true\r\n }\r\n}", "StatusCode": 200 } ],