But fixes to preview 2
This commit is contained in:
Родитель
867193c745
Коммит
ec87de4e62
|
@ -2,7 +2,7 @@
|
|||
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
|
||||
<PropertyGroup>
|
||||
<RequiredTargetFrameworks>netstandard2.0;netcoreapp3.1;net5.0;net47</RequiredTargetFrameworks>
|
||||
<RequiredTargetFrameworks>netstandard2.0;net5.0;net47</RequiredTargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<packageSources>
|
||||
<add key="Azure SDK Tools" value="https://azuresdkartifacts.blob.core.windows.net/azure-sdk-tools/index.json" protocolVersion="3" />
|
||||
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||
</packageSources>
|
||||
</configuration>
|
|
@ -5,14 +5,14 @@
|
|||
<!-- <Import Project="$(MSBuildThisFileDirectory)\Directory.Build.props" Condition="Exists('..\Directory.Build.props')" /> -->
|
||||
|
||||
<PropertyGroup>
|
||||
<RequiredTargetFrameworks Condition="$(RequiredTargetFrameworks) == ''">netstandard2.0;netcoreapp3.1;net5.0</RequiredTargetFrameworks>
|
||||
<RequiredTargetFrameworks Condition="$(RequiredTargetFrameworks) == ''">netstandard2.0;net5.0;net47</RequiredTargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Azure.Identity" Version="1.3.0"/>
|
||||
<PackageReference Include="System.Text.Json" Version="5.0.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
|
||||
<PackageReference Include="AutoRest.CSharp.V3" Version="3.0.0-beta.20201217.1" />
|
||||
<PackageReference Include="Microsoft.Azure.AutoRest.CSharp" Version="3.0.0-beta.20210211.2" />
|
||||
<PackageReference Include="Azure.Core" Version="1.7.0"/>
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
@ -50,3 +50,7 @@ using System.Diagnostics.CodeAnalysis;
|
|||
[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1622:Generic type parameter documentation should have text", Justification = "Suppress messages for shared.", Scope = "namespaceanddescendants", Target = "~N:Azure.Core")]
|
||||
[assembly: SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1015:Closing generic brackets should be spaced correctly", Justification = "Suppress messages for shared.", Scope = "namespaceanddescendants", Target = "~N:Azure.Core")]
|
||||
[assembly: SuppressMessage("StyleCop.CSharp.SpacingRules", "SA1001:Commas should be spaced correctly", Justification = "Suppress messages for shared.", Scope = "namespaceanddescendants", Target = "~N:Azure.Core")]
|
||||
[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "~T:Microsoft.Marketplace.SaaS.IFulfillmentOperations")]
|
||||
[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "~T:Microsoft.Marketplace.Metering.IMeteringOperations")]
|
||||
[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "T:Microsoft.Marketplace.SaaS.IMarketplaceSaaSClient")]
|
||||
[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1600:Elements should be documented", Justification = "Suppress documentation messages for interfaces", Scope = "type", Target = "~T:Microsoft.Marketplace.SaaS.ISubscriptionOperations")]
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
namespace Microsoft.Marketplace.Metering
|
||||
{
|
||||
/// <summary> Metering client. </summary>
|
||||
public interface IMarketplaceMeteringClient
|
||||
{
|
||||
/// <summary> Gets an instance of MeteringOperations. </summary>
|
||||
MeteringOperations Metering { get; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Azure;
|
||||
using Microsoft.Marketplace.Metering.Models;
|
||||
|
||||
namespace Microsoft.Marketplace.Metering
|
||||
{
|
||||
public interface IMeteringOperations
|
||||
{
|
||||
Response<IReadOnlyList<UsageEventOkResponse>> PostBatchUsageEvent(IEnumerable<UsageEvent> body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<IReadOnlyList<UsageEventOkResponse>>> PostBatchUsageEventAsync(IEnumerable<UsageEvent> body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Response<UsageEventOkResponse> PostUsageEvent(UsageEvent body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<UsageEventOkResponse>> PostUsageEventAsync(UsageEvent body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
// <auto-generated/>
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using Azure.Core;
|
||||
using Azure.Core.Pipeline;
|
||||
|
||||
namespace Microsoft.Marketplace.Metering
|
||||
{
|
||||
/// <summary> Metering service client. </summary>
|
||||
public class MarketplaceMeteringClient : IMarketplaceMeteringClient
|
||||
{
|
||||
private readonly ClientDiagnostics clientDiagnostics;
|
||||
private readonly HttpPipeline pipeline;
|
||||
private readonly Uri endpoint;
|
||||
|
||||
/// <summary> Initializes a new instance of MarketplaceMeteringClient for mocking. </summary>
|
||||
protected MarketplaceMeteringClient()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary> Initializes a new instance of MarketplaceMeteringClient. </summary>
|
||||
/// <param name="tokenCredential"> The OAuth token for making client requests. </param>
|
||||
/// <param name="options"> The options for configuring the client. </param>
|
||||
public MarketplaceMeteringClient(TokenCredential tokenCredential, MarketplaceMeteringClientOptions options = null) : this(null, tokenCredential, options)
|
||||
{
|
||||
}
|
||||
/// <summary> Initializes a new instance of MarketplaceMeteringClient. </summary>
|
||||
/// <param name="endpoint"> server parameter. </param>
|
||||
/// <param name="tokenCredential"> The OAuth token for making client requests. </param>
|
||||
/// <param name="options"> The options for configuring the client. </param>
|
||||
public MarketplaceMeteringClient(Uri endpoint, TokenCredential tokenCredential, MarketplaceMeteringClientOptions options = null)
|
||||
{
|
||||
endpoint ??= new Uri("https://marketplaceapi.microsoft.com/api");
|
||||
|
||||
options ??= new MarketplaceMeteringClientOptions();
|
||||
this.clientDiagnostics = new ClientDiagnostics(options);
|
||||
this.pipeline = HttpPipelineBuilder.Build(options, new BearerTokenAuthenticationPolicy(tokenCredential, $"20e940b3-4c77-4b0b-9a53-9e16a1b010a7/.default"));
|
||||
this.endpoint = endpoint;
|
||||
}
|
||||
|
||||
public virtual MeteringOperations Metering => new MeteringOperations(clientDiagnostics, pipeline, endpoint);
|
||||
}
|
||||
}
|
|
@ -10,7 +10,8 @@ using Azure.Core;
|
|||
namespace Microsoft.Marketplace.Metering
|
||||
{
|
||||
/// <summary> Client options for Metering. </summary>
|
||||
public class MeteringManagementClientOptions : ClientOptions
|
||||
public class MarketplaceMeteringClientOptions
|
||||
: ClientOptions
|
||||
{
|
||||
}
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
// <auto-generated/>
|
||||
|
||||
#nullable disable
|
||||
|
||||
using System;
|
||||
using Azure.Core;
|
||||
using Azure.Core.Pipeline;
|
||||
using Microsoft.Marketplace.Metering;
|
||||
|
||||
namespace Microsoft.Marketplace.Metering
|
||||
{
|
||||
/// <summary> Metering service management client. </summary>
|
||||
public class MeteringManagementClient
|
||||
{
|
||||
private readonly ClientDiagnostics _clientDiagnostics;
|
||||
private readonly HttpPipeline _pipeline;
|
||||
private readonly Uri _endpoint;
|
||||
|
||||
/// <summary> Initializes a new instance of MeteringManagementClient for mocking. </summary>
|
||||
protected MeteringManagementClient()
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary> Initializes a new instance of MeteringManagementClient. </summary>
|
||||
/// <param name="tokenCredential"> The OAuth token for making client requests. </param>
|
||||
/// <param name="options"> The options for configuring the client. </param>
|
||||
public MeteringManagementClient(TokenCredential tokenCredential, MeteringManagementClientOptions options = null) : this(null, tokenCredential, options)
|
||||
{
|
||||
}
|
||||
/// <summary> Initializes a new instance of MeteringManagementClient. </summary>
|
||||
/// <param name="endpoint"> server parameter. </param>
|
||||
/// <param name="tokenCredential"> The OAuth token for making client requests. </param>
|
||||
/// <param name="options"> The options for configuring the client. </param>
|
||||
public MeteringManagementClient(Uri endpoint, TokenCredential tokenCredential, MeteringManagementClientOptions options = null)
|
||||
{
|
||||
endpoint ??= new Uri("https://marketplaceapi.microsoft.com/api");
|
||||
|
||||
options ??= new MeteringManagementClientOptions();
|
||||
_clientDiagnostics = new ClientDiagnostics(options);
|
||||
_pipeline = ManagementPipelineBuilder.Build(tokenCredential, endpoint, options);
|
||||
_endpoint = endpoint;
|
||||
}
|
||||
|
||||
/// <summary> Returns an instance of MeteringOperations. </summary>
|
||||
public virtual MeteringOperations Metering => new MeteringOperations(_clientDiagnostics, _pipeline, _endpoint);
|
||||
}
|
||||
}
|
|
@ -7,7 +7,7 @@ namespace Microsoft.Marketplace.Metering
|
|||
|
||||
/// <summary> The Subscription service client. </summary>
|
||||
[CodeGenClient("MeteringClient")]
|
||||
public partial class MeteringOperations
|
||||
public partial class MeteringOperations : IMeteringOperations
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
@ -16,15 +16,9 @@ namespace Microsoft.Marketplace.SaaS
|
|||
[CodeGenSuppress("UpdateSubscription", typeof(Guid), typeof(SubscriberPlan), typeof(Guid), typeof(Guid), typeof(CancellationToken))]
|
||||
[CodeGenSuppress("DeleteSubscriptionAsync", typeof(Guid), typeof(Guid), typeof(Guid), typeof(CancellationToken))]
|
||||
[CodeGenSuppress("DeleteSubscription", typeof(Guid), typeof(Guid), typeof(Guid), typeof(CancellationToken))]
|
||||
public partial class FulfillmentOperations
|
||||
public partial class FulfillmentOperations : IFulfillmentOperations
|
||||
{
|
||||
/// <summary> Use this call to update the plan, the user count (quantity), or both. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="body"> The SubscriberPlan to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="Task{string}"/> representing the result of the asynchronous operation.</returns>
|
||||
/// <inheritdoc/>
|
||||
public virtual async Task<string> UpdateSubscriptionAsync(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.UpdateSubscription");
|
||||
|
@ -41,13 +35,7 @@ namespace Microsoft.Marketplace.SaaS
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary> Use this call to update the plan, the user count (quantity), or both. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="body"> The SubscriberPlan to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="string"/> representing the result of the operation.</returns>
|
||||
/// <inheritdoc/>
|
||||
public virtual string UpdateSubscription(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.UpdateSubscription");
|
||||
|
@ -64,12 +52,7 @@ namespace Microsoft.Marketplace.SaaS
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary> Unsubscribe and delete the specified subscription. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="Task{TResult}"/> representing the result of the asynchronous operation.</returns>
|
||||
/// <inheritdoc/>
|
||||
public virtual async Task<string> DeleteSubscriptionAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.DeleteSubscription");
|
||||
|
@ -86,12 +69,7 @@ namespace Microsoft.Marketplace.SaaS
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary> Unsubscribe and delete the specified subscription. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="string"/> representing the result of the operation.</returns>
|
||||
/// <inheritdoc/>
|
||||
public virtual string DeleteSubscription(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var scope = this._clientDiagnostics.CreateScope("FulfillmentOperations.DeleteSubscription");
|
||||
|
|
|
@ -0,0 +1,69 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Azure;
|
||||
using Microsoft.Marketplace.SaaS.Models;
|
||||
|
||||
namespace Microsoft.Marketplace.SaaS
|
||||
{
|
||||
/// <summary> The Subscription service client. </summary>
|
||||
public interface IFulfillmentOperations
|
||||
{
|
||||
Response ActivateSubscription(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response> ActivateSubscriptionAsync(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary> Unsubscribe and delete the specified subscription. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="string"/> representing the result of the operation.</returns>
|
||||
string DeleteSubscription(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary> Unsubscribe and delete the specified subscription. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="Task{TResult}"/> representing the result of the asynchronous operation.</returns>
|
||||
Task<string> DeleteSubscriptionAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Response<Subscription> GetSubscription(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<Subscription>> GetSubscriptionAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Response<SubscriptionPlans> ListAvailablePlans(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<SubscriptionPlans>> ListAvailablePlansAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Pageable<Subscription> ListSubscriptions(string continuationToken = null, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
AsyncPageable<Subscription> ListSubscriptionsAsync(string continuationToken = null, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Response<ResolvedSubscription> Resolve(string xMsMarketplaceToken, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<ResolvedSubscription>> ResolveAsync(string xMsMarketplaceToken, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary> Use this call to update the plan, the user count (quantity), or both. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="body"> The SubscriberPlan to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="string"/> representing the result of the operation.</returns>
|
||||
string UpdateSubscription(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
/// <summary> Use this call to update the plan, the user count (quantity), or both. </summary>
|
||||
/// <param name="subscriptionId"> The Uuid to use. </param>
|
||||
/// <param name="body"> The SubscriberPlan to use. </param>
|
||||
/// <param name="requestId"> A unique string value for tracking the request from the client, preferably a GUID. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="correlationId"> A unique string value for operation on the client. This parameter correlates all events from client operation with events on the server side. If this value isn't provided, one will be generated and provided in the response headers. </param>
|
||||
/// <param name="cancellationToken"> The cancellation token to use. </param>
|
||||
/// <returns>A <see cref="Task{string}"/> representing the result of the asynchronous operation.</returns>
|
||||
Task<string> UpdateSubscriptionAsync(Guid subscriptionId, SubscriberPlan body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
namespace Microsoft.Marketplace.SaaS
|
||||
{
|
||||
public interface IMarketplaceSaaSClient
|
||||
{
|
||||
FulfillmentOperations Fulfillment { get; }
|
||||
|
||||
SubscriptionOperations Operations { get; }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Azure;
|
||||
using Microsoft.Marketplace.SaaS.Models;
|
||||
|
||||
namespace Microsoft.Marketplace.SaaS
|
||||
{
|
||||
public interface ISubscriptionOperations
|
||||
{
|
||||
Response<Operation> GetOperationStatus(Guid subscriptionId, Guid operationId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<Operation>> GetOperationStatusAsync(Guid subscriptionId, Guid operationId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Response<OperationList> ListOperations(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response<OperationList>> ListOperationsAsync(Guid subscriptionId, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Response UpdateOperationStatus(Guid subscriptionId, Guid operationId, UpdateOperation body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
|
||||
Task<Response> UpdateOperationStatusAsync(Guid subscriptionId, Guid operationId, UpdateOperation body, Guid? requestId = null, Guid? correlationId = null, CancellationToken cancellationToken = default);
|
||||
}
|
||||
}
|
|
@ -8,7 +8,7 @@ namespace Microsoft.Marketplace.SaaS
|
|||
using Azure.Core.Pipeline;
|
||||
|
||||
/// <summary> SaaS service management client. </summary>
|
||||
public class MarketplaceSaaSClient
|
||||
public class MarketplaceSaaSClient : IMarketplaceSaaSClient
|
||||
{
|
||||
private readonly ClientDiagnostics clientDiagnostics;
|
||||
private readonly HttpPipeline pipeline;
|
||||
|
@ -50,7 +50,7 @@ namespace Microsoft.Marketplace.SaaS
|
|||
/// <summary> Gets an instance of FulfillmentOperations. </summary>
|
||||
public virtual FulfillmentOperations Fulfillment => new FulfillmentOperations(this.clientDiagnostics, this.pipeline, this.endpoint);
|
||||
|
||||
/// <summary> Gets an instance of SubscriptionOperations. </summary>
|
||||
public virtual SubscriptionOperations SubscriptionOperations => new SubscriptionOperations(this.clientDiagnostics, this.pipeline, this.endpoint);
|
||||
/// <summary> Gets an instance of Operations. </summary>
|
||||
public virtual SubscriptionOperations Operations => new SubscriptionOperations(this.clientDiagnostics, this.pipeline, this.endpoint);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace Microsoft.Marketplace.SaaS
|
|||
|
||||
/// <summary> The Subscription service client. </summary>
|
||||
[CodeGenClient("SubscriptionClient")]
|
||||
public partial class SubscriptionOperations
|
||||
public partial class SubscriptionOperations : ISubscriptionOperations
|
||||
{
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<packageSources>
|
||||
<add key="Azure SDK Tools" value="https://azuresdkartifacts.blob.core.windows.net/azure-sdk-tools/index.json" protocolVersion="3" />
|
||||
</packageSources>
|
||||
</configuration>
|
|
@ -4,7 +4,7 @@
|
|||
<!-- <Import Project="$(MSBuildThisFileDirectory)\Directory.Build.props" Condition="Exists('..\Directory.Build.props')" /> -->
|
||||
|
||||
<PropertyGroup>
|
||||
<RequiredTargetFrameworks Condition="$(RequiredTargetFrameworks) == ''">netstandard2.0;netcoreapp3.1;net5.0</RequiredTargetFrameworks>
|
||||
<RequiredTargetFrameworks Condition="$(RequiredTargetFrameworks) == ''">netstandard2.0;net5.0;net47</RequiredTargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -6,12 +6,15 @@ using System.Collections.Generic;
|
|||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Net.Http;
|
||||
using System.Security;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Threading.Tasks;
|
||||
using Azure.Core;
|
||||
using Azure.Core.Pipeline;
|
||||
using Azure.Core.TestFramework;
|
||||
using Azure.Identity;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Marketplace.Metering;
|
||||
using Microsoft.Marketplace.SaaS;
|
||||
using Microsoft.Marketplace.SaaS.Models;
|
||||
using NUnit.Framework;
|
||||
|
@ -25,10 +28,12 @@ namespace Microsoft.Marketplace.Tests
|
|||
{
|
||||
private IConfigurationRoot config;
|
||||
|
||||
private const string MarketplacePurchaseIdentificationToken = "9EVFKOQwhUCgLB0OKLRdav6AoOXHDKqTUyYgGlJpDy92RdX8XGA+Ebv8XjBcKfcduQW0ggoG2xKszgQozWkU1yUouS+4xsy7xaCSiJRgg6XMkXI9RJV+pdD1/NbSGQIS7gqrxNziYDApXmSRvcd7EuTfdZK3vnsgcWf19g1qpVp+ooAVyCPb8sPvmSuOifJxdvHZu+99YvQURPKnnBchnJK2VQqxbNJZ1e3ZyhYxT28=";
|
||||
|
||||
// Changed to record when client code is generated first time manually.
|
||||
#pragma warning disable SA1600 // Elements should be documented
|
||||
public FulfillmentTests()
|
||||
: base(true, RecordedTestMode.Playback)
|
||||
: base(true, RecordedTestMode.Record)
|
||||
#pragma warning restore SA1600 // Elements should be documented
|
||||
{
|
||||
this.config = new ConfigurationBuilder()
|
||||
|
@ -49,6 +54,18 @@ namespace Microsoft.Marketplace.Tests
|
|||
NUnit.Framework.Assert.IsTrue(subscriptions.Any());
|
||||
}
|
||||
|
||||
[RecordedTest]
|
||||
public async Task GetAllSubscriptionsAsListWithCertAsync()
|
||||
{
|
||||
var sut = this.InstrumentClient(this.GetMarketplaceSaaSClient(true));
|
||||
var subscriptions = await sut.Fulfillment.ListSubscriptionsAsync().ToListAsync();
|
||||
|
||||
Debug.Print($"Received {subscriptions} subscriptions");
|
||||
Debug.Print($"Received {subscriptions.Select(s => s.Id).Distinct().ToList().Count} distinct subscriptions");
|
||||
|
||||
NUnit.Framework.Assert.IsTrue(subscriptions.Any());
|
||||
}
|
||||
|
||||
[RecordedTest]
|
||||
public async Task GetSubscription()
|
||||
{
|
||||
|
@ -92,7 +109,23 @@ namespace Microsoft.Marketplace.Tests
|
|||
|
||||
// This needs to be run manually after receiving a marketplace token on the landing page, and adding here.
|
||||
// Don't forget to urldecode if you are copying from the url param
|
||||
var marketplaceToken = "RUA01U9XFK7hkUoCGo0yOCEnXyJHu3cP9VihTQREWTyUkDySoSiMb5j3t3PHXPZUIPN61g1IRQESVIfVRimE+XfdKYiMjg9El3nP0AFhYxuuRMX4jhGeaJHP1JAdz9SP0cti/o6z3RgJDzWTN0eXtLgzbCoRUgdWa64/iHGIFKN30RA9njDxuJkuUp1Ml3wFsQKYcq4HjfD5lUcYOw6amefQ4RzHk9L+krn83OrHfwo=";
|
||||
var marketplaceToken = MarketplacePurchaseIdentificationToken;
|
||||
var resolvedSubscription = await sut.Fulfillment.ResolveAsync(marketplaceToken);
|
||||
|
||||
Debug.Print(resolvedSubscription.Value.SubscriptionName);
|
||||
Assert.IsNotNull(resolvedSubscription);
|
||||
}
|
||||
|
||||
[RecordedTest]
|
||||
|
||||
// [Ignore("Only use with a new marketplace token and record!")]
|
||||
public async Task ResolveSubscriptionWithCert()
|
||||
{
|
||||
var sut = this.InstrumentClient(this.GetMarketplaceSaaSClient(true));
|
||||
|
||||
// This needs to be run manually after receiving a marketplace token on the landing page, and adding here.
|
||||
// Don't forget to urldecode if you are copying from the url param
|
||||
var marketplaceToken = MarketplacePurchaseIdentificationToken;
|
||||
var resolvedSubscription = await sut.Fulfillment.ResolveAsync(marketplaceToken);
|
||||
|
||||
Debug.Print(resolvedSubscription.Value.SubscriptionName);
|
||||
|
@ -116,7 +149,7 @@ namespace Microsoft.Marketplace.Tests
|
|||
// Cannot check whether this succeeed or not.
|
||||
var operationId = Guid.TryParse(result, out var value) ? value : Guid.Empty;
|
||||
|
||||
var operation = await sut.SubscriptionOperations.GetOperationStatusAsync(firstActiveSubscription.Id.Value, operationId);
|
||||
var operation = await sut.Operations.GetOperationStatusAsync(firstActiveSubscription.Id.Value, operationId);
|
||||
|
||||
Assert.IsNotNull(operation);
|
||||
|
||||
|
@ -154,12 +187,74 @@ namespace Microsoft.Marketplace.Tests
|
|||
Assert.IsTrue(availablePlans.Value.Plans.SelectMany(p => p.PlanComponents.RecurrentBillingTerms).Any());
|
||||
}
|
||||
|
||||
private MarketplaceSaaSClient GetMarketplaceSaaSClient()
|
||||
[RecordedTest]
|
||||
public async Task PostSingleUsage()
|
||||
{
|
||||
return new MarketplaceSaaSClient(new ClientSecretCredential(this.config["TenantId"], this.config["ClientId"], this.config["clientSecret"]), this.GetOptions());
|
||||
var sut = this.InstrumentClient(this.GetMarketplaceMeteringClient());
|
||||
|
||||
var usageEvent = new Metering.Models.UsageEvent {
|
||||
ResourceUri = "/subscriptions/bf7adf12-c3a8-426c-9976-29f145eba70f/resourceGroups/ercmngd/providers/Microsoft.Solutions/applications/ercuserassigned",
|
||||
Quantity = 15,
|
||||
Dimension = "dim1",
|
||||
EffectiveStartTime = DateTime.Now.AddHours(-65),
|
||||
PlanId = "userassigned",
|
||||
};
|
||||
|
||||
var result = await sut.Metering.PostUsageEventAsync(usageEvent);
|
||||
|
||||
}
|
||||
|
||||
private MarketplaceSaaSClientOptions GetOptions()
|
||||
private MarketplaceSaaSClient GetMarketplaceSaaSClient(bool useCert = false)
|
||||
{
|
||||
TokenCredential creds;
|
||||
if (useCert)
|
||||
{
|
||||
var password = this.config["certPassword"];
|
||||
var filePath = this.config["certFilePath"];
|
||||
|
||||
var store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
|
||||
|
||||
var certCollection = new X509Certificate2Collection();
|
||||
certCollection.Import(filePath, password, X509KeyStorageFlags.PersistKeySet);
|
||||
|
||||
var cert = certCollection[0];
|
||||
|
||||
creds = new ClientCertificateCredential(this.config["TenantId"], this.config["ClientId"], cert);
|
||||
}
|
||||
else
|
||||
{
|
||||
creds = new ClientSecretCredential(this.config["TenantId"], this.config["ClientId"], this.config["clientSecret"]);
|
||||
}
|
||||
|
||||
return new MarketplaceSaaSClient(creds, this.GetMarketplaceSaaSClientOptions());
|
||||
}
|
||||
|
||||
private MarketplaceMeteringClient GetMarketplaceMeteringClient(bool useCert = false)
|
||||
{
|
||||
TokenCredential creds;
|
||||
if (useCert)
|
||||
{
|
||||
var password = this.config["certPassword"];
|
||||
var filePath = this.config["certFilePath"];
|
||||
|
||||
var store = new X509Store(StoreName.My, StoreLocation.CurrentUser);
|
||||
|
||||
var certCollection = new X509Certificate2Collection();
|
||||
certCollection.Import(filePath, password, X509KeyStorageFlags.PersistKeySet);
|
||||
|
||||
var cert = certCollection[0];
|
||||
|
||||
creds = new ClientCertificateCredential(this.config["TenantId"], this.config["ClientId"], cert);
|
||||
}
|
||||
else
|
||||
{
|
||||
creds = new ClientSecretCredential(this.config["TenantId"], this.config["ClientId"], this.config["clientSecret"]);
|
||||
}
|
||||
|
||||
return new MarketplaceMeteringClient(creds, this.GetMarketplaceMeteringClientOptions());
|
||||
}
|
||||
|
||||
private MarketplaceSaaSClientOptions GetMarketplaceSaaSClientOptions()
|
||||
{
|
||||
var options = new MarketplaceSaaSClientOptions()
|
||||
{
|
||||
|
@ -185,5 +280,32 @@ namespace Microsoft.Marketplace.Tests
|
|||
|
||||
return this.InstrumentClientOptions(options);
|
||||
}
|
||||
|
||||
private MarketplaceMeteringClientOptions GetMarketplaceMeteringClientOptions()
|
||||
{
|
||||
var options = new MarketplaceMeteringClientOptions()
|
||||
{
|
||||
Diagnostics = { IsLoggingEnabled = true },
|
||||
Retry =
|
||||
{
|
||||
Mode = RetryMode.Exponential,
|
||||
MaxRetries = 10,
|
||||
Delay = TimeSpan.FromSeconds(this.Mode == RecordedTestMode.Playback ? 0.01 : 1),
|
||||
MaxDelay = TimeSpan.FromSeconds(this.Mode == RecordedTestMode.Playback ? 0.1 : 60),
|
||||
NetworkTimeout = TimeSpan.FromSeconds(this.Mode == RecordedTestMode.Playback ? 100 : 400),
|
||||
},
|
||||
Transport = new HttpClientTransport(
|
||||
new HttpClient()
|
||||
{
|
||||
Timeout = TimeSpan.FromSeconds(1000),
|
||||
}),
|
||||
};
|
||||
if (this.Mode != RecordedTestMode.Live)
|
||||
{
|
||||
options.AddPolicy(new RecordedClientRequestIdPolicy(this.Recording, false), HttpPipelinePosition.PerCall);
|
||||
}
|
||||
|
||||
return this.InstrumentClientOptions(options);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -18,12 +18,13 @@
|
|||
|
||||
<ItemGroup>
|
||||
<!-- <ProjectReference Include="..\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj" Aliases="AzureCoreTestFramework" /> -->
|
||||
<ProjectReference Include="..\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj" />
|
||||
<ProjectReference Include="..\Azure.Core.TestFramework\src\Azure.Core.TestFramework.csproj" />
|
||||
<ProjectReference Include="..\..\src\Microsoft.Marketplace.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Azure.Identity" Version="1.3.0" />
|
||||
<PackageReference Include="Microsoft.Azure.AutoRest.CSharp" Version="3.0.0-beta.20210211.2" />
|
||||
<PackageReference Include="NUnit" Version="3.13.1" />
|
||||
<PackageReference Include="NUnit3TestAdapter" Version="3.17.0" />
|
||||
</ItemGroup>
|
||||
|
@ -33,11 +34,10 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Azure.Identity" Version="1.3.0"/>
|
||||
<PackageReference Include="Azure.Identity" Version="1.3.0" />
|
||||
<PackageReference Include="System.Text.Json" Version="5.0.0" />
|
||||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
|
||||
<PackageReference Include="AutoRest.CSharp.V3" Version="3.0.0-beta.20201217.1" />
|
||||
<PackageReference Include="Azure.Core" Version="1.7.0"/>
|
||||
<PackageReference Include="Azure.Core" Version="1.7.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "ed24abfb-d973-f316-82a1-d715cbcad6e8",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -16,19 +16,19 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "83978",
|
||||
"Content-Length": "85609",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:03 GMT",
|
||||
"ETag": "\u002211953bdf-2f00-440e-a9e7-2d803b16d65f\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:49 GMT",
|
||||
"ETag": "\u00222cbf90c3-dbc8-46f3-ad14-9d73f549588a\u0022",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
"ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "ce2ca8cc-feff-4d38-9f8c-6518a4a5e733",
|
||||
"x-ms-correlationid": "033d9c77-ed0d-4825-9200-bbd33668a305",
|
||||
"x-ms-requestid": "033d9c77-ed0d-4825-9200-bbd33668a305",
|
||||
"X-Azure-Ref": "0qRUwYAAAAACnoSS6tQDORYhVai7R7w3\u002BV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "b2b5772f-c19e-4d6f-b2f3-d88e75947a02",
|
||||
"x-ms-correlationid": "77ad69d2-8d6c-45b1-837a-c5fe5eb9807d",
|
||||
"x-ms-requestid": "77ad69d2-8d6c-45b1-837a-c5fe5eb9807d",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -133,8 +133,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -150,7 +150,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T17:41:07.1576845Z",
|
||||
"lastModified": "2021-02-01T22:33:27.6541116Z",
|
||||
"lastModified": "2021-02-11T21:56:01.1229201Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -1859,8 +1859,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-12T00:00:00Z",
|
||||
"endDate": "2021-02-11T00:00:00Z",
|
||||
"startDate": "2021-02-12T00:00:00Z",
|
||||
"endDate": "2021-03-11T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -1876,7 +1876,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-29T19:24:46.8480754Z",
|
||||
"lastModified": "2021-01-12T18:15:04.5716647Z",
|
||||
"lastModified": "2021-02-12T04:17:22.9227318Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2009,8 +2009,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2026,7 +2026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-06T15:48:58.5963255Z",
|
||||
"lastModified": "2021-01-11T00:01:33.4511326Z",
|
||||
"lastModified": "2021-02-11T02:18:11.7678927Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2267,8 +2267,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2284,7 +2284,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T18:12:41.5561984Z",
|
||||
"lastModified": "2021-01-11T21:25:38.6063496Z",
|
||||
"lastModified": "2021-02-11T21:19:06.6443612Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2998,6 +2998,62 @@
|
|||
"created": "2021-01-22T17:46:42.8121831Z",
|
||||
"lastModified": "2021-01-22T17:56:35.4880589Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
"id": "489f64b6-98ec-a062-a8b4-5367484d1d14",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "scs-saas-mixing-preview",
|
||||
"name": "test",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"planId": "basic-monthly-or-annual",
|
||||
"term": {
|
||||
"startDate": "2021-02-04T00:00:00Z",
|
||||
"endDate": "2021-03-03T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
"isTest": false,
|
||||
"isFreeTrial": false,
|
||||
"allowedCustomerOperations": [
|
||||
"Delete",
|
||||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0",
|
||||
"fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-02-04T17:29:21.8405148Z",
|
||||
"lastModified": "2021-02-04T17:32:19.0300527Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
],
|
||||
"@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31"
|
||||
|
@ -3011,7 +3067,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "0888f65e-3aea-b998-47c1-52f4bf33b100",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -3019,15 +3075,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "89604",
|
||||
"Content-Length": "89603",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:03 GMT",
|
||||
"ETag": "\u0022ea67fc5c-5fc1-4391-b673-389c7c5b65d4\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "02d146d5-0361-457c-ae77-2a76859ada02",
|
||||
"x-ms-correlationid": "3849d3b1-c6a8-40d4-98d1-c85888c21692",
|
||||
"x-ms-requestid": "3849d3b1-c6a8-40d4-98d1-c85888c21692",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:49 GMT",
|
||||
"ETag": "\u0022393e492f-e1ee-4c9a-99c8-b419f61fb0b8\u0022",
|
||||
"X-Azure-Ref": "0qhUwYAAAAADCZpswwYhLR7Oe5IfrXJ6RV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "db4f18fc-e0a8-4e24-a435-7cecb660ed6e",
|
||||
"x-ms-correlationid": "2fd330bd-7539-4a81-a34c-b3e327380be9",
|
||||
"x-ms-requestid": "2fd330bd-7539-4a81-a34c-b3e327380be9",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -5548,8 +5604,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -5565,7 +5621,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T19:13:14.9763056Z",
|
||||
"lastModified": "2021-01-11T13:45:22.9808889Z",
|
||||
"lastModified": "2021-02-11T13:18:00.464219Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -6274,7 +6330,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "d5b7c9bd-cd42-93fe-96c4-7917aadb933b",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -6282,15 +6338,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "118394",
|
||||
"Content-Length": "118383",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:03 GMT",
|
||||
"ETag": "\u0022dbe993fd-d993-42f8-bd2f-e15db3ff2043\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "08a6e026-975c-4de8-8da9-db7502075f74",
|
||||
"x-ms-correlationid": "94c694f3-5fa3-4454-ae16-16dcc8158f47",
|
||||
"x-ms-requestid": "94c694f3-5fa3-4454-ae16-16dcc8158f47",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:49 GMT",
|
||||
"ETag": "\u0022dfd55375-b6e4-4a71-a005-2dc50bb2a140\u0022",
|
||||
"X-Azure-Ref": "0qhUwYAAAAADM9HHEPLIyR7Wf\u002B6dwfudqV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "17426b74-6eda-4b20-b113-dc0a756806bf",
|
||||
"x-ms-correlationid": "3948e001-62d1-4936-a322-dc74d43bd935",
|
||||
"x-ms-requestid": "3948e001-62d1-4936-a322-dc74d43bd935",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -6515,8 +6571,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -6532,7 +6588,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T16:51:35.2238173Z",
|
||||
"lastModified": "2021-01-07T21:16:38.0056464Z",
|
||||
"lastModified": "2021-02-07T17:36:47.4081955Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8825,8 +8881,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -8842,7 +8898,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-07T15:38:39.5264795Z",
|
||||
"lastModified": "2021-01-07T13:24:33.1506448Z",
|
||||
"lastModified": "2021-02-07T19:42:33.5592454Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8894,7 +8950,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T23:19:04.6687978Z",
|
||||
"lastModified": "2021-01-11T21:23:34.7767656Z",
|
||||
"lastModified": "2021-02-11T02:13:53.2938907Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9623,8 +9679,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9640,7 +9696,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-21T17:52:54.0642703Z",
|
||||
"lastModified": "2021-01-21T18:57:17.9829907Z",
|
||||
"lastModified": "2021-02-14T02:51:35.1862122Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9667,8 +9723,8 @@
|
|||
},
|
||||
"planId": "public",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9684,7 +9740,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T18:10:33.2525465Z",
|
||||
"lastModified": "2021-01-14T20:06:23.9230469Z",
|
||||
"lastModified": "2021-02-14T14:48:21.1638543Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9711,8 +9767,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9728,7 +9784,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T21:11:58.5885238Z",
|
||||
"lastModified": "2021-01-14T22:32:18.8778354Z",
|
||||
"lastModified": "2021-02-14T12:33:52.5867286Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9861,8 +9917,8 @@
|
|||
},
|
||||
"planId": "instant-portal-standard",
|
||||
"term": {
|
||||
"startDate": "2021-01-05T00:00:00Z",
|
||||
"endDate": "2021-02-04T00:00:00Z",
|
||||
"startDate": "2021-02-05T00:00:00Z",
|
||||
"endDate": "2021-03-04T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9878,7 +9934,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-05T02:42:08.2082173Z",
|
||||
"lastModified": "2021-01-05T15:02:26.6216391Z",
|
||||
"lastModified": "2021-02-05T08:37:15.6026716Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9957,8 +10013,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-19T00:00:00Z",
|
||||
"endDate": "2021-02-18T00:00:00Z",
|
||||
"startDate": "2021-02-19T00:00:00Z",
|
||||
"endDate": "2021-03-18T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9974,7 +10030,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-19T17:49:25.4024396Z",
|
||||
"lastModified": "2021-01-19T08:07:38.8873732Z",
|
||||
"lastModified": "2021-02-19T02:01:09.0269304Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10334,7 +10390,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "redmond115",
|
||||
"saasSubscriptionStatus": "PendingFulfillmentStart",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@hotmail.com",
|
||||
"objectId": "d2858116-704b-480d-acf8-340adbab114f",
|
||||
|
@ -10376,7 +10432,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-15T22:01:18.6098849Z",
|
||||
"lastModified": "2021-01-15T22:01:22.5319981Z",
|
||||
"lastModified": "2021-02-15T06:27:41.7806117Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10481,7 +10537,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "f53712ca-db7c-d3be-b4b6-e2e64d9a52ff",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -10491,13 +10547,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "97842",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:04 GMT",
|
||||
"ETag": "\u0022daa10250-d597-4c44-a9ed-d1071036803c\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "37596bf6-396e-418b-8319-121cb468e5f2",
|
||||
"x-ms-correlationid": "c12cde84-09a5-49c8-b234-b4c47cc864db",
|
||||
"x-ms-requestid": "c12cde84-09a5-49c8-b234-b4c47cc864db",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:49 GMT",
|
||||
"ETag": "\u00222413e284-e67e-4b81-8870-aa7a133d7b55\u0022",
|
||||
"X-Azure-Ref": "0qhUwYAAAAABwM9LK78BOSrs\u002BZ9SSq1FTV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "3088ff02-225e-4f10-93c4-4acc8536d852",
|
||||
"x-ms-correlationid": "d97d01c6-3cda-4968-b356-a93e098af1cc",
|
||||
"x-ms-requestid": "d97d01c6-3cda-4968-b356-a93e098af1cc",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -13066,8 +13122,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-10T00:00:00Z",
|
||||
"endDate": "2021-02-09T00:00:00Z",
|
||||
"startDate": "2021-02-10T00:00:00Z",
|
||||
"endDate": "2021-03-09T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13083,7 +13139,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-08-10T16:29:54.8329451Z",
|
||||
"lastModified": "2021-01-10T18:15:18.1894662Z",
|
||||
"lastModified": "2021-02-10T03:47:57.9818166Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13154,8 +13210,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13171,7 +13227,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-14T23:24:49.8054763Z",
|
||||
"lastModified": "2021-01-14T18:31:57.2401121Z",
|
||||
"lastModified": "2021-02-14T20:46:24.2746881Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13198,8 +13254,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-15T00:00:00Z",
|
||||
"endDate": "2021-02-14T00:00:00Z",
|
||||
"startDate": "2021-02-15T00:00:00Z",
|
||||
"endDate": "2021-03-14T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13215,7 +13271,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-15T19:47:31.1572826Z",
|
||||
"lastModified": "2021-01-15T12:34:41.6980612Z",
|
||||
"lastModified": "2021-02-15T11:35:56.7024853Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13426,8 +13482,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13443,7 +13499,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-28T17:32:17.3885671Z",
|
||||
"lastModified": "2021-01-14T02:02:09.9020713Z",
|
||||
"lastModified": "2021-02-14T13:03:16.3618579Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13821,7 +13877,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-20T18:29:27.3784172Z",
|
||||
"lastModified": "2021-01-20T18:30:26.4474061Z",
|
||||
"lastModified": "2021-02-13T06:06:32.6033421Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13934,7 +13990,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "984d73dd-9da4-02bf-4761-9443877d48a9",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -13942,15 +13998,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "115879",
|
||||
"Content-Length": "115884",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:04 GMT",
|
||||
"ETag": "\u00228eb6d704-09f4-41d5-b51b-9696d7799188\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "5e8f8739-5d2c-4dc8-a696-c4cbecaf63df",
|
||||
"x-ms-correlationid": "61dcf29c-6e1e-4c68-8c0a-e488920b5a19",
|
||||
"x-ms-requestid": "61dcf29c-6e1e-4c68-8c0a-e488920b5a19",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:49 GMT",
|
||||
"ETag": "\u0022250730c4-66a3-477e-8f40-4976b4f113bd\u0022",
|
||||
"X-Azure-Ref": "0qhUwYAAAAACKaL3J/Jo4T7d4sqU77j4bV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "e63376ac-2838-4880-a5cb-f6e79e2a8dfe",
|
||||
"x-ms-correlationid": "ee531349-285b-4e60-9bbf-f2898dcea872",
|
||||
"x-ms-requestid": "ee531349-285b-4e60-9bbf-f2898dcea872",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -14683,8 +14739,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-09T00:00:00Z",
|
||||
"endDate": "2021-02-08T00:00:00Z",
|
||||
"startDate": "2021-02-09T00:00:00Z",
|
||||
"endDate": "2021-03-08T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -14700,7 +14756,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-12-09T13:18:30.9138381Z",
|
||||
"lastModified": "2021-01-09T22:58:42.1164947Z",
|
||||
"lastModified": "2021-02-09T10:56:54.980815Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15237,8 +15293,8 @@
|
|||
},
|
||||
"planId": "base",
|
||||
"term": {
|
||||
"startDate": "2021-01-13T00:00:00Z",
|
||||
"endDate": "2021-02-12T00:00:00Z",
|
||||
"startDate": "2021-02-13T00:00:00Z",
|
||||
"endDate": "2021-03-12T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -15254,7 +15310,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-02-13T18:17:58.7971727Z",
|
||||
"lastModified": "2021-01-13T19:41:10.283823Z",
|
||||
"lastModified": "2021-02-13T04:25:20.8252684Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15414,7 +15470,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond 3-2-1",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -15446,7 +15502,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-03-02T16:43:30.3063035Z",
|
||||
"lastModified": "2021-02-02T18:18:19.1298285Z",
|
||||
"lastModified": "2021-02-08T18:10:24.3657561Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15970,7 +16026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-09T23:40:30.887548Z",
|
||||
"lastModified": "2021-01-09T11:39:50.1911926Z",
|
||||
"lastModified": "2021-02-09T22:57:20.5118236Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -16703,8 +16759,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -16720,7 +16776,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T15:36:22.2336759Z",
|
||||
"lastModified": "2021-01-11T14:02:04.8101096Z",
|
||||
"lastModified": "2021-02-11T11:23:24.9257264Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -17786,8 +17842,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -17803,7 +17859,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-29T14:09:59.8172835Z",
|
||||
"lastModified": "2021-01-14T02:19:03.7107539Z",
|
||||
"lastModified": "2021-02-14T18:57:22.4601469Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -18016,7 +18072,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond1292",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -18054,7 +18110,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-29T21:39:09.5744025Z",
|
||||
"lastModified": "2021-01-29T21:48:16.511869Z",
|
||||
"lastModified": "2021-02-09T15:25:01.2941457Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
]
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -8,7 +8,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "894d953e-2903-29c1-1b1c-5caef6e2ce28",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -16,19 +16,19 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "83978",
|
||||
"Content-Length": "85609",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:05 GMT",
|
||||
"ETag": "\u0022e32c5540-69aa-468e-a793-4eeae1d10df0\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:51 GMT",
|
||||
"ETag": "\u0022c2d88805-fb5b-4d16-8574-3a56231fa6e9\u0022",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "fba417d4-82c9-4175-8a6a-8cfc94637737",
|
||||
"x-ms-correlationid": "98939032-1d32-4852-83b6-73a723ec3b3a",
|
||||
"x-ms-requestid": "98939032-1d32-4852-83b6-73a723ec3b3a",
|
||||
"X-Azure-Ref": "0rBUwYAAAAADFKrQkv1vSQYXP\u002BjfmIClKV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "a893c7d2-2474-4f35-9792-ff539c95a596",
|
||||
"x-ms-correlationid": "2708f0a5-f42d-4307-82f0-61b1f4a56dc9",
|
||||
"x-ms-requestid": "2708f0a5-f42d-4307-82f0-61b1f4a56dc9",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -133,8 +133,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -150,7 +150,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T17:41:07.1576845Z",
|
||||
"lastModified": "2021-02-01T22:33:27.6541116Z",
|
||||
"lastModified": "2021-02-11T21:56:01.1229201Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -1859,8 +1859,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-12T00:00:00Z",
|
||||
"endDate": "2021-02-11T00:00:00Z",
|
||||
"startDate": "2021-02-12T00:00:00Z",
|
||||
"endDate": "2021-03-11T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -1876,7 +1876,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-29T19:24:46.8480754Z",
|
||||
"lastModified": "2021-01-12T18:15:04.5716647Z",
|
||||
"lastModified": "2021-02-12T04:17:22.9227318Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2009,8 +2009,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2026,7 +2026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-06T15:48:58.5963255Z",
|
||||
"lastModified": "2021-01-11T00:01:33.4511326Z",
|
||||
"lastModified": "2021-02-11T02:18:11.7678927Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2267,8 +2267,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2284,7 +2284,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T18:12:41.5561984Z",
|
||||
"lastModified": "2021-01-11T21:25:38.6063496Z",
|
||||
"lastModified": "2021-02-11T21:19:06.6443612Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2998,6 +2998,62 @@
|
|||
"created": "2021-01-22T17:46:42.8121831Z",
|
||||
"lastModified": "2021-01-22T17:56:35.4880589Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
"id": "489f64b6-98ec-a062-a8b4-5367484d1d14",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "scs-saas-mixing-preview",
|
||||
"name": "test",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"planId": "basic-monthly-or-annual",
|
||||
"term": {
|
||||
"startDate": "2021-02-04T00:00:00Z",
|
||||
"endDate": "2021-03-03T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
"isTest": false,
|
||||
"isFreeTrial": false,
|
||||
"allowedCustomerOperations": [
|
||||
"Delete",
|
||||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0",
|
||||
"fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-02-04T17:29:21.8405148Z",
|
||||
"lastModified": "2021-02-04T17:32:19.0300527Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
],
|
||||
"@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31"
|
||||
|
@ -3011,7 +3067,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "918d903c-5bd9-e5bd-2fc6-4adfa1e48710",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -3019,15 +3075,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "89604",
|
||||
"Content-Length": "89603",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:05 GMT",
|
||||
"ETag": "\u0022e30caa63-73a6-4108-8f2a-93e45ebbaf52\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "2b1bb462-77fa-4c44-bd77-3ba33e4d2a32",
|
||||
"x-ms-correlationid": "faacb24b-c272-4821-b188-242593f289bb",
|
||||
"x-ms-requestid": "faacb24b-c272-4821-b188-242593f289bb",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:51 GMT",
|
||||
"ETag": "\u0022fe8a727c-81ed-4222-bcef-69a12b4c5f29\u0022",
|
||||
"X-Azure-Ref": "0rBUwYAAAAAAdjJLIM86nT4SU8MhMHLAUV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "6868d6ea-0361-4b4e-a95c-b4c4a1a064f5",
|
||||
"x-ms-correlationid": "df998c77-583a-40d4-af8c-1de6662a8df6",
|
||||
"x-ms-requestid": "df998c77-583a-40d4-af8c-1de6662a8df6",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -5548,8 +5604,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -5565,7 +5621,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T19:13:14.9763056Z",
|
||||
"lastModified": "2021-01-11T13:45:22.9808889Z",
|
||||
"lastModified": "2021-02-11T13:18:00.464219Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -6274,7 +6330,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "65724a3f-3d55-ce4f-3ec2-86a2f8d8e0f9",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -6282,15 +6338,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "118394",
|
||||
"Content-Length": "118383",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:05 GMT",
|
||||
"ETag": "\u0022ca6c25ac-3707-413d-8bdf-f19bbb6e6808\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "e983d805-ac3c-4d8a-a33c-8b0bec847c7b",
|
||||
"x-ms-correlationid": "f76e6170-0ec7-4e43-9c13-601c210e4f4a",
|
||||
"x-ms-requestid": "f76e6170-0ec7-4e43-9c13-601c210e4f4a",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:51 GMT",
|
||||
"ETag": "\u00222a6348f6-7921-4478-9159-e81d567212ee\u0022",
|
||||
"X-Azure-Ref": "0rBUwYAAAAAClb0GvlAlZQpU/Ctcdv3lgV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "17bb8a2d-92ff-4e17-8304-8beac9edadf8",
|
||||
"x-ms-correlationid": "d4a6654c-0cf5-4d8d-ae72-81e51b0e1aec",
|
||||
"x-ms-requestid": "d4a6654c-0cf5-4d8d-ae72-81e51b0e1aec",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -6515,8 +6571,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -6532,7 +6588,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T16:51:35.2238173Z",
|
||||
"lastModified": "2021-01-07T21:16:38.0056464Z",
|
||||
"lastModified": "2021-02-07T17:36:47.4081955Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8825,8 +8881,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -8842,7 +8898,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-07T15:38:39.5264795Z",
|
||||
"lastModified": "2021-01-07T13:24:33.1506448Z",
|
||||
"lastModified": "2021-02-07T19:42:33.5592454Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8894,7 +8950,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T23:19:04.6687978Z",
|
||||
"lastModified": "2021-01-11T21:23:34.7767656Z",
|
||||
"lastModified": "2021-02-11T02:13:53.2938907Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9623,8 +9679,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9640,7 +9696,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-21T17:52:54.0642703Z",
|
||||
"lastModified": "2021-01-21T18:57:17.9829907Z",
|
||||
"lastModified": "2021-02-14T02:51:35.1862122Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9667,8 +9723,8 @@
|
|||
},
|
||||
"planId": "public",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9684,7 +9740,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T18:10:33.2525465Z",
|
||||
"lastModified": "2021-01-14T20:06:23.9230469Z",
|
||||
"lastModified": "2021-02-14T14:48:21.1638543Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9711,8 +9767,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9728,7 +9784,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T21:11:58.5885238Z",
|
||||
"lastModified": "2021-01-14T22:32:18.8778354Z",
|
||||
"lastModified": "2021-02-14T12:33:52.5867286Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9861,8 +9917,8 @@
|
|||
},
|
||||
"planId": "instant-portal-standard",
|
||||
"term": {
|
||||
"startDate": "2021-01-05T00:00:00Z",
|
||||
"endDate": "2021-02-04T00:00:00Z",
|
||||
"startDate": "2021-02-05T00:00:00Z",
|
||||
"endDate": "2021-03-04T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9878,7 +9934,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-05T02:42:08.2082173Z",
|
||||
"lastModified": "2021-01-05T15:02:26.6216391Z",
|
||||
"lastModified": "2021-02-05T08:37:15.6026716Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9957,8 +10013,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-19T00:00:00Z",
|
||||
"endDate": "2021-02-18T00:00:00Z",
|
||||
"startDate": "2021-02-19T00:00:00Z",
|
||||
"endDate": "2021-03-18T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9974,7 +10030,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-19T17:49:25.4024396Z",
|
||||
"lastModified": "2021-01-19T08:07:38.8873732Z",
|
||||
"lastModified": "2021-02-19T02:01:09.0269304Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10334,7 +10390,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "redmond115",
|
||||
"saasSubscriptionStatus": "PendingFulfillmentStart",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@hotmail.com",
|
||||
"objectId": "d2858116-704b-480d-acf8-340adbab114f",
|
||||
|
@ -10376,7 +10432,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-15T22:01:18.6098849Z",
|
||||
"lastModified": "2021-01-15T22:01:22.5319981Z",
|
||||
"lastModified": "2021-02-15T06:27:41.7806117Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10481,7 +10537,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "579f52d4-2172-81bb-5bf1-9ebeba550405",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -10491,13 +10547,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "97842",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:05 GMT",
|
||||
"ETag": "\u002206952062-b2c4-4ca5-a5a9-a7a61ed06384\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "f4f580f9-fefb-4e17-a194-8cd7c0235d58",
|
||||
"x-ms-correlationid": "785b1515-e43f-4f99-bc01-c7b43e237b1c",
|
||||
"x-ms-requestid": "785b1515-e43f-4f99-bc01-c7b43e237b1c",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:51 GMT",
|
||||
"ETag": "\u0022c62ebabe-d80f-4505-8e8d-2749b4d08d17\u0022",
|
||||
"X-Azure-Ref": "0rBUwYAAAAACgLDKbDZcaQIgwd8uVz5VkV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "041a2752-7236-47cb-af7d-7f86f98c16eb",
|
||||
"x-ms-correlationid": "70df7bd3-74e2-43a2-b803-9da844f1c422",
|
||||
"x-ms-requestid": "70df7bd3-74e2-43a2-b803-9da844f1c422",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -13066,8 +13122,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-10T00:00:00Z",
|
||||
"endDate": "2021-02-09T00:00:00Z",
|
||||
"startDate": "2021-02-10T00:00:00Z",
|
||||
"endDate": "2021-03-09T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13083,7 +13139,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-08-10T16:29:54.8329451Z",
|
||||
"lastModified": "2021-01-10T18:15:18.1894662Z",
|
||||
"lastModified": "2021-02-10T03:47:57.9818166Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13154,8 +13210,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13171,7 +13227,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-14T23:24:49.8054763Z",
|
||||
"lastModified": "2021-01-14T18:31:57.2401121Z",
|
||||
"lastModified": "2021-02-14T20:46:24.2746881Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13198,8 +13254,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-15T00:00:00Z",
|
||||
"endDate": "2021-02-14T00:00:00Z",
|
||||
"startDate": "2021-02-15T00:00:00Z",
|
||||
"endDate": "2021-03-14T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13215,7 +13271,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-15T19:47:31.1572826Z",
|
||||
"lastModified": "2021-01-15T12:34:41.6980612Z",
|
||||
"lastModified": "2021-02-15T11:35:56.7024853Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13426,8 +13482,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13443,7 +13499,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-28T17:32:17.3885671Z",
|
||||
"lastModified": "2021-01-14T02:02:09.9020713Z",
|
||||
"lastModified": "2021-02-14T13:03:16.3618579Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13821,7 +13877,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-20T18:29:27.3784172Z",
|
||||
"lastModified": "2021-01-20T18:30:26.4474061Z",
|
||||
"lastModified": "2021-02-13T06:06:32.6033421Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13934,7 +13990,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "a6ce2542-8939-8887-f8b2-307261d34144",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -13942,15 +13998,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "115879",
|
||||
"Content-Length": "115884",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:05 GMT",
|
||||
"ETag": "\u0022ffd5efdd-c362-4087-993b-1c0c2e943b6c\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "6a049079-6ef8-42ea-8304-27245a22c91a",
|
||||
"x-ms-correlationid": "f7e5e909-0d9f-4a32-b146-bc77c80eec13",
|
||||
"x-ms-requestid": "f7e5e909-0d9f-4a32-b146-bc77c80eec13",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:51 GMT",
|
||||
"ETag": "\u0022c62e524b-28c7-4f95-8439-b05554dff04f\u0022",
|
||||
"X-Azure-Ref": "0rBUwYAAAAABr8J2cknDsT74ibxz739lwV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "22cd3965-fb3e-4da0-95ad-643249064963",
|
||||
"x-ms-correlationid": "000b2d28-ae6a-4777-bb53-a3711ad0ab6b",
|
||||
"x-ms-requestid": "000b2d28-ae6a-4777-bb53-a3711ad0ab6b",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -14683,8 +14739,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-09T00:00:00Z",
|
||||
"endDate": "2021-02-08T00:00:00Z",
|
||||
"startDate": "2021-02-09T00:00:00Z",
|
||||
"endDate": "2021-03-08T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -14700,7 +14756,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-12-09T13:18:30.9138381Z",
|
||||
"lastModified": "2021-01-09T22:58:42.1164947Z",
|
||||
"lastModified": "2021-02-09T10:56:54.980815Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15237,8 +15293,8 @@
|
|||
},
|
||||
"planId": "base",
|
||||
"term": {
|
||||
"startDate": "2021-01-13T00:00:00Z",
|
||||
"endDate": "2021-02-12T00:00:00Z",
|
||||
"startDate": "2021-02-13T00:00:00Z",
|
||||
"endDate": "2021-03-12T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -15254,7 +15310,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-02-13T18:17:58.7971727Z",
|
||||
"lastModified": "2021-01-13T19:41:10.283823Z",
|
||||
"lastModified": "2021-02-13T04:25:20.8252684Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15414,7 +15470,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond 3-2-1",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -15446,7 +15502,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-03-02T16:43:30.3063035Z",
|
||||
"lastModified": "2021-02-02T18:18:19.1298285Z",
|
||||
"lastModified": "2021-02-08T18:10:24.3657561Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15970,7 +16026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-09T23:40:30.887548Z",
|
||||
"lastModified": "2021-01-09T11:39:50.1911926Z",
|
||||
"lastModified": "2021-02-09T22:57:20.5118236Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -16703,8 +16759,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -16720,7 +16776,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T15:36:22.2336759Z",
|
||||
"lastModified": "2021-01-11T14:02:04.8101096Z",
|
||||
"lastModified": "2021-02-11T11:23:24.9257264Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -17786,8 +17842,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -17803,7 +17859,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-29T14:09:59.8172835Z",
|
||||
"lastModified": "2021-01-14T02:19:03.7107539Z",
|
||||
"lastModified": "2021-02-14T18:57:22.4601469Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -18016,7 +18072,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond1292",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -18054,7 +18110,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-29T21:39:09.5744025Z",
|
||||
"lastModified": "2021-01-29T21:48:16.511869Z",
|
||||
"lastModified": "2021-02-09T15:25:01.2941457Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "6596abeb-4c02-35df-260a-560791625415",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -16,19 +16,19 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "83978",
|
||||
"Content-Length": "85609",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:07 GMT",
|
||||
"ETag": "\u0022d7b334c6-2b98-4be4-aaf4-3308f0d374a5\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:53 GMT",
|
||||
"ETag": "\u0022a76d220a-1c88-4875-a6c3-826c29113f73\u0022",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "24303518-26f7-4b34-bc02-1861bd1b6edc",
|
||||
"x-ms-correlationid": "79349b03-cd34-4dc5-8fae-b10021bd5999",
|
||||
"x-ms-requestid": "79349b03-cd34-4dc5-8fae-b10021bd5999",
|
||||
"X-Azure-Ref": "0rBUwYAAAAABVc84L10c7RZw2Atdy965DV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "ff6b2731-4bf2-499c-a201-064901368873",
|
||||
"x-ms-correlationid": "d29fdd14-dad3-4c93-8627-0d143242aa0c",
|
||||
"x-ms-requestid": "d29fdd14-dad3-4c93-8627-0d143242aa0c",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -133,8 +133,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -150,7 +150,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T17:41:07.1576845Z",
|
||||
"lastModified": "2021-02-01T22:33:27.6541116Z",
|
||||
"lastModified": "2021-02-11T21:56:01.1229201Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -1859,8 +1859,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-12T00:00:00Z",
|
||||
"endDate": "2021-02-11T00:00:00Z",
|
||||
"startDate": "2021-02-12T00:00:00Z",
|
||||
"endDate": "2021-03-11T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -1876,7 +1876,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-29T19:24:46.8480754Z",
|
||||
"lastModified": "2021-01-12T18:15:04.5716647Z",
|
||||
"lastModified": "2021-02-12T04:17:22.9227318Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2009,8 +2009,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2026,7 +2026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-06T15:48:58.5963255Z",
|
||||
"lastModified": "2021-01-11T00:01:33.4511326Z",
|
||||
"lastModified": "2021-02-11T02:18:11.7678927Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2267,8 +2267,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2284,7 +2284,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T18:12:41.5561984Z",
|
||||
"lastModified": "2021-01-11T21:25:38.6063496Z",
|
||||
"lastModified": "2021-02-11T21:19:06.6443612Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2998,6 +2998,62 @@
|
|||
"created": "2021-01-22T17:46:42.8121831Z",
|
||||
"lastModified": "2021-01-22T17:56:35.4880589Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
"id": "489f64b6-98ec-a062-a8b4-5367484d1d14",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "scs-saas-mixing-preview",
|
||||
"name": "test",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"planId": "basic-monthly-or-annual",
|
||||
"term": {
|
||||
"startDate": "2021-02-04T00:00:00Z",
|
||||
"endDate": "2021-03-03T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
"isTest": false,
|
||||
"isFreeTrial": false,
|
||||
"allowedCustomerOperations": [
|
||||
"Delete",
|
||||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0",
|
||||
"fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-02-04T17:29:21.8405148Z",
|
||||
"lastModified": "2021-02-04T17:32:19.0300527Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
],
|
||||
"@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31"
|
||||
|
@ -3011,7 +3067,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "35134656-b675-f417-f50a-9c458168dee5",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -3019,15 +3075,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "89604",
|
||||
"Content-Length": "89603",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:07 GMT",
|
||||
"ETag": "\u0022ae0b3e00-ef71-4556-b60e-8b304d5bd2b1\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "e12dd2a3-4d33-4d69-ad9a-edbe55222d1f",
|
||||
"x-ms-correlationid": "5540febf-ac92-42fb-b617-2287745ab01b",
|
||||
"x-ms-requestid": "5540febf-ac92-42fb-b617-2287745ab01b",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:53 GMT",
|
||||
"ETag": "\u0022b68471ee-847d-4ced-a47a-0c11cd6fb61d\u0022",
|
||||
"X-Azure-Ref": "0rRUwYAAAAACwf\u002Bqdelz2QpnYG\u002BfaNXPSV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "153b2dc4-aaa9-439f-b576-7f0a6a443da1",
|
||||
"x-ms-correlationid": "b1372558-4c57-4368-a798-a125738554a3",
|
||||
"x-ms-requestid": "b1372558-4c57-4368-a798-a125738554a3",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -5548,8 +5604,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -5565,7 +5621,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T19:13:14.9763056Z",
|
||||
"lastModified": "2021-01-11T13:45:22.9808889Z",
|
||||
"lastModified": "2021-02-11T13:18:00.464219Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -6274,7 +6330,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "4bb0ac04-1e4f-0ba0-b09c-745fff37f6bb",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -6282,15 +6338,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "118394",
|
||||
"Content-Length": "118383",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:07 GMT",
|
||||
"ETag": "\u0022699d2d51-69c0-48e3-8930-bbcb2d3de220\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "56a54dcd-ca82-4c25-a0e5-9241f646e012",
|
||||
"x-ms-correlationid": "906c5b1f-63d3-4312-bead-a99e163a7332",
|
||||
"x-ms-requestid": "906c5b1f-63d3-4312-bead-a99e163a7332",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:53 GMT",
|
||||
"ETag": "\u0022d49e6013-1bf8-4dcc-bdd3-cefb33e289dd\u0022",
|
||||
"X-Azure-Ref": "0rRUwYAAAAACvzh6xdEnTT5gxP0aF/exfV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "609fa0ea-acc6-42d4-80e9-a2012bd02762",
|
||||
"x-ms-correlationid": "71a36f80-1013-485a-b53f-f5c25111d99d",
|
||||
"x-ms-requestid": "71a36f80-1013-485a-b53f-f5c25111d99d",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -6515,8 +6571,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -6532,7 +6588,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T16:51:35.2238173Z",
|
||||
"lastModified": "2021-01-07T21:16:38.0056464Z",
|
||||
"lastModified": "2021-02-07T17:36:47.4081955Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8825,8 +8881,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -8842,7 +8898,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-07T15:38:39.5264795Z",
|
||||
"lastModified": "2021-01-07T13:24:33.1506448Z",
|
||||
"lastModified": "2021-02-07T19:42:33.5592454Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8894,7 +8950,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T23:19:04.6687978Z",
|
||||
"lastModified": "2021-01-11T21:23:34.7767656Z",
|
||||
"lastModified": "2021-02-11T02:13:53.2938907Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9623,8 +9679,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9640,7 +9696,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-21T17:52:54.0642703Z",
|
||||
"lastModified": "2021-01-21T18:57:17.9829907Z",
|
||||
"lastModified": "2021-02-14T02:51:35.1862122Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9667,8 +9723,8 @@
|
|||
},
|
||||
"planId": "public",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9684,7 +9740,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T18:10:33.2525465Z",
|
||||
"lastModified": "2021-01-14T20:06:23.9230469Z",
|
||||
"lastModified": "2021-02-14T14:48:21.1638543Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9711,8 +9767,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9728,7 +9784,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T21:11:58.5885238Z",
|
||||
"lastModified": "2021-01-14T22:32:18.8778354Z",
|
||||
"lastModified": "2021-02-14T12:33:52.5867286Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9861,8 +9917,8 @@
|
|||
},
|
||||
"planId": "instant-portal-standard",
|
||||
"term": {
|
||||
"startDate": "2021-01-05T00:00:00Z",
|
||||
"endDate": "2021-02-04T00:00:00Z",
|
||||
"startDate": "2021-02-05T00:00:00Z",
|
||||
"endDate": "2021-03-04T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9878,7 +9934,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-05T02:42:08.2082173Z",
|
||||
"lastModified": "2021-01-05T15:02:26.6216391Z",
|
||||
"lastModified": "2021-02-05T08:37:15.6026716Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9957,8 +10013,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-19T00:00:00Z",
|
||||
"endDate": "2021-02-18T00:00:00Z",
|
||||
"startDate": "2021-02-19T00:00:00Z",
|
||||
"endDate": "2021-03-18T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9974,7 +10030,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-19T17:49:25.4024396Z",
|
||||
"lastModified": "2021-01-19T08:07:38.8873732Z",
|
||||
"lastModified": "2021-02-19T02:01:09.0269304Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10334,7 +10390,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "redmond115",
|
||||
"saasSubscriptionStatus": "PendingFulfillmentStart",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@hotmail.com",
|
||||
"objectId": "d2858116-704b-480d-acf8-340adbab114f",
|
||||
|
@ -10376,7 +10432,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-15T22:01:18.6098849Z",
|
||||
"lastModified": "2021-01-15T22:01:22.5319981Z",
|
||||
"lastModified": "2021-02-15T06:27:41.7806117Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10481,7 +10537,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "d440bbe0-93b7-e396-1caf-a23fda504ff7",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -10491,13 +10547,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "97842",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:07 GMT",
|
||||
"ETag": "\u002214d2d310-a689-42f2-9e1d-605f396678a4\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "2923f8f0-259c-48fd-b44a-7be496aec9d8",
|
||||
"x-ms-correlationid": "9133b7d9-4cb8-4fae-81c2-5eae76402226",
|
||||
"x-ms-requestid": "9133b7d9-4cb8-4fae-81c2-5eae76402226",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:53 GMT",
|
||||
"ETag": "\u00222798a004-062b-49f6-b46d-fce384f9e534\u0022",
|
||||
"X-Azure-Ref": "0rRUwYAAAAABYmjpx89yiTISR1v/igvtTV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "9bb614c7-65f3-4360-9d06-4b5575411509",
|
||||
"x-ms-correlationid": "f6e21663-eb7d-4e69-bd11-96cb80f25df6",
|
||||
"x-ms-requestid": "f6e21663-eb7d-4e69-bd11-96cb80f25df6",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -13066,8 +13122,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-10T00:00:00Z",
|
||||
"endDate": "2021-02-09T00:00:00Z",
|
||||
"startDate": "2021-02-10T00:00:00Z",
|
||||
"endDate": "2021-03-09T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13083,7 +13139,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-08-10T16:29:54.8329451Z",
|
||||
"lastModified": "2021-01-10T18:15:18.1894662Z",
|
||||
"lastModified": "2021-02-10T03:47:57.9818166Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13154,8 +13210,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13171,7 +13227,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-14T23:24:49.8054763Z",
|
||||
"lastModified": "2021-01-14T18:31:57.2401121Z",
|
||||
"lastModified": "2021-02-14T20:46:24.2746881Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13198,8 +13254,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-15T00:00:00Z",
|
||||
"endDate": "2021-02-14T00:00:00Z",
|
||||
"startDate": "2021-02-15T00:00:00Z",
|
||||
"endDate": "2021-03-14T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13215,7 +13271,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-15T19:47:31.1572826Z",
|
||||
"lastModified": "2021-01-15T12:34:41.6980612Z",
|
||||
"lastModified": "2021-02-15T11:35:56.7024853Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13426,8 +13482,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13443,7 +13499,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-28T17:32:17.3885671Z",
|
||||
"lastModified": "2021-01-14T02:02:09.9020713Z",
|
||||
"lastModified": "2021-02-14T13:03:16.3618579Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13821,7 +13877,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-20T18:29:27.3784172Z",
|
||||
"lastModified": "2021-01-20T18:30:26.4474061Z",
|
||||
"lastModified": "2021-02-13T06:06:32.6033421Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13934,7 +13990,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "437e3869-21f6-7103-0d3f-33da108d2d45",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -13942,15 +13998,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "115879",
|
||||
"Content-Length": "115884",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:07 GMT",
|
||||
"ETag": "\u00224509ec66-c5bf-4434-8f23-d4874c719259\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "88eb0d13-8bb0-4cf5-8895-60509db24394",
|
||||
"x-ms-correlationid": "61dc4d92-8504-4c86-b878-e46a097446f9",
|
||||
"x-ms-requestid": "61dc4d92-8504-4c86-b878-e46a097446f9",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:53 GMT",
|
||||
"ETag": "\u0022d93a5575-e40e-4edc-8ccf-3035b2d3eaab\u0022",
|
||||
"X-Azure-Ref": "0rRUwYAAAAADSCUr9HlYnQq8xRRDk6NGVV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "bccff6ed-8086-4a60-b92c-032953fc699d",
|
||||
"x-ms-correlationid": "a3226637-9d26-4d6a-98cb-633a6449169f",
|
||||
"x-ms-requestid": "a3226637-9d26-4d6a-98cb-633a6449169f",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -14683,8 +14739,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-09T00:00:00Z",
|
||||
"endDate": "2021-02-08T00:00:00Z",
|
||||
"startDate": "2021-02-09T00:00:00Z",
|
||||
"endDate": "2021-03-08T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -14700,7 +14756,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-12-09T13:18:30.9138381Z",
|
||||
"lastModified": "2021-01-09T22:58:42.1164947Z",
|
||||
"lastModified": "2021-02-09T10:56:54.980815Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15237,8 +15293,8 @@
|
|||
},
|
||||
"planId": "base",
|
||||
"term": {
|
||||
"startDate": "2021-01-13T00:00:00Z",
|
||||
"endDate": "2021-02-12T00:00:00Z",
|
||||
"startDate": "2021-02-13T00:00:00Z",
|
||||
"endDate": "2021-03-12T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -15254,7 +15310,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-02-13T18:17:58.7971727Z",
|
||||
"lastModified": "2021-01-13T19:41:10.283823Z",
|
||||
"lastModified": "2021-02-13T04:25:20.8252684Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15414,7 +15470,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond 3-2-1",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -15446,7 +15502,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-03-02T16:43:30.3063035Z",
|
||||
"lastModified": "2021-02-02T18:18:19.1298285Z",
|
||||
"lastModified": "2021-02-08T18:10:24.3657561Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15970,7 +16026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-09T23:40:30.887548Z",
|
||||
"lastModified": "2021-01-09T11:39:50.1911926Z",
|
||||
"lastModified": "2021-02-09T22:57:20.5118236Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -16703,8 +16759,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -16720,7 +16776,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T15:36:22.2336759Z",
|
||||
"lastModified": "2021-01-11T14:02:04.8101096Z",
|
||||
"lastModified": "2021-02-11T11:23:24.9257264Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -17786,8 +17842,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -17803,7 +17859,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-29T14:09:59.8172835Z",
|
||||
"lastModified": "2021-01-14T02:19:03.7107539Z",
|
||||
"lastModified": "2021-02-14T18:57:22.4601469Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -18016,7 +18072,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond1292",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -18054,7 +18110,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-29T21:39:09.5744025Z",
|
||||
"lastModified": "2021-01-29T21:48:16.511869Z",
|
||||
"lastModified": "2021-02-09T15:25:01.2941457Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
]
|
||||
|
@ -18066,10 +18122,10 @@
|
|||
"RequestHeaders": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Sanitized",
|
||||
"Request-Id": "|a0f2d501-42abcd9c1c789a47.",
|
||||
"traceparent": "00-8dce912a5ca1b64d9766f84036b9551f-5b003905ab160f41-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "a1d5ea18-0cd1-0701-83a9-1057a67c4051",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -18079,13 +18135,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "1008",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:07 GMT",
|
||||
"ETag": "\u0022387244be-0875-402a-b2d8-ab80c2442156\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "255a8af5-9171-4429-8b04-2a9e0eb9e63e",
|
||||
"x-ms-correlationid": "acec4295-c192-4bb4-982b-a830e15640c1",
|
||||
"x-ms-requestid": "acec4295-c192-4bb4-982b-a830e15640c1",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:53 GMT",
|
||||
"ETag": "\u00228c605d97-c3e5-455e-9edb-97e172d516c9\u0022",
|
||||
"X-Azure-Ref": "0rRUwYAAAAABXznvm3DSQQLFZeWR2RusnV1NURURHRTA4MTYAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "03881e17-706b-4f3b-b9ab-48ffa03f8aed",
|
||||
"x-ms-correlationid": "46992060-d1cf-4c31-a08d-2079c2581122",
|
||||
"x-ms-requestid": "46992060-d1cf-4c31-a08d-2079c2581122",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "b98a873c-14d4-0dea-3d18-83eac5b14d0b",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -16,19 +16,19 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "83978",
|
||||
"Content-Length": "85609",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:12 GMT",
|
||||
"ETag": "\u002288fc8ae2-2ba7-420d-b24f-1e952b90db34\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"ETag": "\u002254b83037-afa2-4394-b2ed-0ac53d43e544\u0022",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "23d4a2eb-61a7-418d-8e93-3421c35a55a2",
|
||||
"x-ms-correlationid": "bb001ce6-fcf7-4609-b754-8db39e678b95",
|
||||
"x-ms-requestid": "bb001ce6-fcf7-4609-b754-8db39e678b95",
|
||||
"X-Azure-Ref": "0sRUwYAAAAAATPdwSFtFzTIdekBO09ls\u002BV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "6b73dc3d-b71d-42ea-b9db-c43e28890dc7",
|
||||
"x-ms-correlationid": "62424ce5-c051-4fde-9ae2-db8969a28c46",
|
||||
"x-ms-requestid": "62424ce5-c051-4fde-9ae2-db8969a28c46",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -133,8 +133,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -150,7 +150,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T17:41:07.1576845Z",
|
||||
"lastModified": "2021-02-01T22:33:27.6541116Z",
|
||||
"lastModified": "2021-02-11T21:56:01.1229201Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -1859,8 +1859,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-12T00:00:00Z",
|
||||
"endDate": "2021-02-11T00:00:00Z",
|
||||
"startDate": "2021-02-12T00:00:00Z",
|
||||
"endDate": "2021-03-11T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -1876,7 +1876,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-29T19:24:46.8480754Z",
|
||||
"lastModified": "2021-01-12T18:15:04.5716647Z",
|
||||
"lastModified": "2021-02-12T04:17:22.9227318Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2009,8 +2009,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2026,7 +2026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-06T15:48:58.5963255Z",
|
||||
"lastModified": "2021-01-11T00:01:33.4511326Z",
|
||||
"lastModified": "2021-02-11T02:18:11.7678927Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2267,8 +2267,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2284,7 +2284,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T18:12:41.5561984Z",
|
||||
"lastModified": "2021-01-11T21:25:38.6063496Z",
|
||||
"lastModified": "2021-02-11T21:19:06.6443612Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2998,6 +2998,62 @@
|
|||
"created": "2021-01-22T17:46:42.8121831Z",
|
||||
"lastModified": "2021-01-22T17:56:35.4880589Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
"id": "489f64b6-98ec-a062-a8b4-5367484d1d14",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "scs-saas-mixing-preview",
|
||||
"name": "test",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"planId": "basic-monthly-or-annual",
|
||||
"term": {
|
||||
"startDate": "2021-02-04T00:00:00Z",
|
||||
"endDate": "2021-03-03T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
"isTest": false,
|
||||
"isFreeTrial": false,
|
||||
"allowedCustomerOperations": [
|
||||
"Delete",
|
||||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0",
|
||||
"fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-02-04T17:29:21.8405148Z",
|
||||
"lastModified": "2021-02-04T17:32:19.0300527Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
],
|
||||
"@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31"
|
||||
|
@ -3011,7 +3067,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "58c84667-d912-726a-0f5f-e1f268972bad",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -3019,15 +3075,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "89604",
|
||||
"Content-Length": "89603",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:12 GMT",
|
||||
"ETag": "\u0022d2babe48-4cca-4295-9055-6b0e552f983e\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "5beee996-701b-499c-b19d-d31f237778d3",
|
||||
"x-ms-correlationid": "9b7fe7ba-4736-4c01-802f-dfe72aef98e3",
|
||||
"x-ms-requestid": "9b7fe7ba-4736-4c01-802f-dfe72aef98e3",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"ETag": "\u0022ddad1a9c-9e1c-49e8-a78e-238794705513\u0022",
|
||||
"X-Azure-Ref": "0sRUwYAAAAAAldC3krTakRLv/bWXrG7/fV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "be1f11ed-c77d-482f-b4a6-67391430ee8a",
|
||||
"x-ms-correlationid": "9a493117-9b60-476a-b1ba-53963ee8fb4c",
|
||||
"x-ms-requestid": "9a493117-9b60-476a-b1ba-53963ee8fb4c",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -5548,8 +5604,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -5565,7 +5621,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T19:13:14.9763056Z",
|
||||
"lastModified": "2021-01-11T13:45:22.9808889Z",
|
||||
"lastModified": "2021-02-11T13:18:00.464219Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -6274,7 +6330,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "7e82abb5-f5e9-51f9-df68-3b35111549f2",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -6282,15 +6338,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "118394",
|
||||
"Content-Length": "118383",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:12 GMT",
|
||||
"ETag": "\u002255e0a662-3f1b-47d3-8c89-0b105dae0a72\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "d2889595-e170-42bf-b5b7-c39aceb03f2d",
|
||||
"x-ms-correlationid": "3b2b98a4-8392-4c88-be12-f865fca1e932",
|
||||
"x-ms-requestid": "3b2b98a4-8392-4c88-be12-f865fca1e932",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"ETag": "\u0022ef9ecf42-3341-4c0a-b3a8-d8345023421c\u0022",
|
||||
"X-Azure-Ref": "0sRUwYAAAAAD9Yrp6BY2QSL1ssH7BSUWZV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "1a456ab8-7c7c-4cc3-bef7-3cbb88fd99e9",
|
||||
"x-ms-correlationid": "8871859c-0503-41b6-8cd0-cf0e7663f0cf",
|
||||
"x-ms-requestid": "8871859c-0503-41b6-8cd0-cf0e7663f0cf",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -6515,8 +6571,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -6532,7 +6588,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T16:51:35.2238173Z",
|
||||
"lastModified": "2021-01-07T21:16:38.0056464Z",
|
||||
"lastModified": "2021-02-07T17:36:47.4081955Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8825,8 +8881,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -8842,7 +8898,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-07T15:38:39.5264795Z",
|
||||
"lastModified": "2021-01-07T13:24:33.1506448Z",
|
||||
"lastModified": "2021-02-07T19:42:33.5592454Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8894,7 +8950,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T23:19:04.6687978Z",
|
||||
"lastModified": "2021-01-11T21:23:34.7767656Z",
|
||||
"lastModified": "2021-02-11T02:13:53.2938907Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9623,8 +9679,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9640,7 +9696,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-21T17:52:54.0642703Z",
|
||||
"lastModified": "2021-01-21T18:57:17.9829907Z",
|
||||
"lastModified": "2021-02-14T02:51:35.1862122Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9667,8 +9723,8 @@
|
|||
},
|
||||
"planId": "public",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9684,7 +9740,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T18:10:33.2525465Z",
|
||||
"lastModified": "2021-01-14T20:06:23.9230469Z",
|
||||
"lastModified": "2021-02-14T14:48:21.1638543Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9711,8 +9767,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9728,7 +9784,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T21:11:58.5885238Z",
|
||||
"lastModified": "2021-01-14T22:32:18.8778354Z",
|
||||
"lastModified": "2021-02-14T12:33:52.5867286Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9861,8 +9917,8 @@
|
|||
},
|
||||
"planId": "instant-portal-standard",
|
||||
"term": {
|
||||
"startDate": "2021-01-05T00:00:00Z",
|
||||
"endDate": "2021-02-04T00:00:00Z",
|
||||
"startDate": "2021-02-05T00:00:00Z",
|
||||
"endDate": "2021-03-04T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9878,7 +9934,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-05T02:42:08.2082173Z",
|
||||
"lastModified": "2021-01-05T15:02:26.6216391Z",
|
||||
"lastModified": "2021-02-05T08:37:15.6026716Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9957,8 +10013,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-19T00:00:00Z",
|
||||
"endDate": "2021-02-18T00:00:00Z",
|
||||
"startDate": "2021-02-19T00:00:00Z",
|
||||
"endDate": "2021-03-18T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9974,7 +10030,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-19T17:49:25.4024396Z",
|
||||
"lastModified": "2021-01-19T08:07:38.8873732Z",
|
||||
"lastModified": "2021-02-19T02:01:09.0269304Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10334,7 +10390,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "redmond115",
|
||||
"saasSubscriptionStatus": "PendingFulfillmentStart",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@hotmail.com",
|
||||
"objectId": "d2858116-704b-480d-acf8-340adbab114f",
|
||||
|
@ -10376,7 +10432,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-15T22:01:18.6098849Z",
|
||||
"lastModified": "2021-01-15T22:01:22.5319981Z",
|
||||
"lastModified": "2021-02-15T06:27:41.7806117Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10481,7 +10537,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "bd3dae98-ac14-c0c4-3a99-004d6dad3868",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -10491,13 +10547,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "97842",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:12 GMT",
|
||||
"ETag": "\u00221f353756-32e4-4325-a71e-2af1950cd511\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "099eb840-001d-48ee-b11c-b832f48eb78f",
|
||||
"x-ms-correlationid": "539b46a9-bb7e-45ff-9949-296342bf8305",
|
||||
"x-ms-requestid": "539b46a9-bb7e-45ff-9949-296342bf8305",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"ETag": "\u00220d9fe50c-cdff-4cc4-8c81-b0a6ed25227e\u0022",
|
||||
"X-Azure-Ref": "0shUwYAAAAAA8lKAprTtmT76prkJhjU6EV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "693e0391-293a-41cf-9cef-ef21950acb0b",
|
||||
"x-ms-correlationid": "f7a6f471-ed36-4cd1-8641-f0485c4a218c",
|
||||
"x-ms-requestid": "f7a6f471-ed36-4cd1-8641-f0485c4a218c",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -13066,8 +13122,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-10T00:00:00Z",
|
||||
"endDate": "2021-02-09T00:00:00Z",
|
||||
"startDate": "2021-02-10T00:00:00Z",
|
||||
"endDate": "2021-03-09T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13083,7 +13139,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-08-10T16:29:54.8329451Z",
|
||||
"lastModified": "2021-01-10T18:15:18.1894662Z",
|
||||
"lastModified": "2021-02-10T03:47:57.9818166Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13154,8 +13210,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13171,7 +13227,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-14T23:24:49.8054763Z",
|
||||
"lastModified": "2021-01-14T18:31:57.2401121Z",
|
||||
"lastModified": "2021-02-14T20:46:24.2746881Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13198,8 +13254,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-15T00:00:00Z",
|
||||
"endDate": "2021-02-14T00:00:00Z",
|
||||
"startDate": "2021-02-15T00:00:00Z",
|
||||
"endDate": "2021-03-14T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13215,7 +13271,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-15T19:47:31.1572826Z",
|
||||
"lastModified": "2021-01-15T12:34:41.6980612Z",
|
||||
"lastModified": "2021-02-15T11:35:56.7024853Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13426,8 +13482,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13443,7 +13499,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-28T17:32:17.3885671Z",
|
||||
"lastModified": "2021-01-14T02:02:09.9020713Z",
|
||||
"lastModified": "2021-02-14T13:03:16.3618579Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13821,7 +13877,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-20T18:29:27.3784172Z",
|
||||
"lastModified": "2021-01-20T18:30:26.4474061Z",
|
||||
"lastModified": "2021-02-13T06:06:32.6033421Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13934,7 +13990,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "639c1be2-8cd8-cedd-b684-d88582d352b5",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -13942,15 +13998,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "115879",
|
||||
"Content-Length": "115884",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:12 GMT",
|
||||
"ETag": "\u0022e597ae51-2bfc-400a-bc8a-7ae9ffc6313c\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "2b4d13de-c0c1-4f05-921d-9426ca7e10e3",
|
||||
"x-ms-correlationid": "6bea9698-4dfd-4ec0-9e87-e98b6e7b1637",
|
||||
"x-ms-requestid": "6bea9698-4dfd-4ec0-9e87-e98b6e7b1637",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"ETag": "\u0022df32b86b-a089-4876-b266-22ea98575130\u0022",
|
||||
"X-Azure-Ref": "0shUwYAAAAABdhqVd60rTTYfoMC9/aCVxV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "816cf1d5-c17b-451d-8105-852bd5dc6237",
|
||||
"x-ms-correlationid": "3f6cd611-380a-4d6c-acd1-ce03a9e3e64c",
|
||||
"x-ms-requestid": "3f6cd611-380a-4d6c-acd1-ce03a9e3e64c",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -14683,8 +14739,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-09T00:00:00Z",
|
||||
"endDate": "2021-02-08T00:00:00Z",
|
||||
"startDate": "2021-02-09T00:00:00Z",
|
||||
"endDate": "2021-03-08T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -14700,7 +14756,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-12-09T13:18:30.9138381Z",
|
||||
"lastModified": "2021-01-09T22:58:42.1164947Z",
|
||||
"lastModified": "2021-02-09T10:56:54.980815Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15237,8 +15293,8 @@
|
|||
},
|
||||
"planId": "base",
|
||||
"term": {
|
||||
"startDate": "2021-01-13T00:00:00Z",
|
||||
"endDate": "2021-02-12T00:00:00Z",
|
||||
"startDate": "2021-02-13T00:00:00Z",
|
||||
"endDate": "2021-03-12T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -15254,7 +15310,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-02-13T18:17:58.7971727Z",
|
||||
"lastModified": "2021-01-13T19:41:10.283823Z",
|
||||
"lastModified": "2021-02-13T04:25:20.8252684Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15414,7 +15470,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond 3-2-1",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -15446,7 +15502,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-03-02T16:43:30.3063035Z",
|
||||
"lastModified": "2021-02-02T18:18:19.1298285Z",
|
||||
"lastModified": "2021-02-08T18:10:24.3657561Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15970,7 +16026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-09T23:40:30.887548Z",
|
||||
"lastModified": "2021-01-09T11:39:50.1911926Z",
|
||||
"lastModified": "2021-02-09T22:57:20.5118236Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -16703,8 +16759,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -16720,7 +16776,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T15:36:22.2336759Z",
|
||||
"lastModified": "2021-01-11T14:02:04.8101096Z",
|
||||
"lastModified": "2021-02-11T11:23:24.9257264Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -17786,8 +17842,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -17803,7 +17859,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-29T14:09:59.8172835Z",
|
||||
"lastModified": "2021-01-14T02:19:03.7107539Z",
|
||||
"lastModified": "2021-02-14T18:57:22.4601469Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -18016,7 +18072,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond1292",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -18054,7 +18110,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-29T21:39:09.5744025Z",
|
||||
"lastModified": "2021-01-29T21:48:16.511869Z",
|
||||
"lastModified": "2021-02-09T15:25:01.2941457Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
]
|
||||
|
@ -18066,10 +18122,10 @@
|
|||
"RequestHeaders": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Sanitized",
|
||||
"Request-Id": "|a0f2d503-42abcd9c1c789a47.",
|
||||
"traceparent": "00-0cf751c6bba05042bdb30b9072ef8182-23090c1ec81b8e4b-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "516b5df1-d410-0090-5fe5-bb26da8eafb6",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -18079,13 +18135,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "1008",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:13 GMT",
|
||||
"ETag": "\u0022241cdd3e-6398-47a3-ad24-6a0028720309\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "dd7fef28-2d74-47c4-aa7b-be010695b815",
|
||||
"x-ms-correlationid": "247ce11e-424d-4223-b904-14b0b3c741ca",
|
||||
"x-ms-requestid": "247ce11e-424d-4223-b904-14b0b3c741ca",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"ETag": "\u0022a1b8236c-0d96-4a9f-b5dc-d8ade1a613ca\u0022",
|
||||
"X-Azure-Ref": "0shUwYAAAAAC8F/6XmqfGQpc4aIpunHNLV1NURURHRTA4MTgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "737bc62c-0bb8-4c66-a903-1da6f5f1898b",
|
||||
"x-ms-correlationid": "15d08d4b-c904-4a8f-8ed4-5fd3990abc3e",
|
||||
"x-ms-requestid": "15d08d4b-c904-4a8f-8ed4-5fd3990abc3e",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"Entries": [
|
||||
{
|
||||
"RequestUri": "https://marketplaceapi.microsoft.com/api/usageEvent?api-version=2018-08-31",
|
||||
"RequestMethod": "POST",
|
||||
"RequestHeaders": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Sanitized",
|
||||
"Content-Length": "265",
|
||||
"Content-Type": "application/json",
|
||||
"traceparent": "00-8fa4f3892b08c847850c4b814452cfd5-14b37c295f826544-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21318)"
|
||||
],
|
||||
"x-ms-client-request-id": "3acc752a-f91e-54ed-6ec4-24f6f016f604",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
},
|
||||
"RequestBody": {
|
||||
"resourceUri": "/subscriptions/bf7adf12-c3a8-426c-9976-29f145eba70f/resourceGroups/ercmngd/providers/Microsoft.Solutions/applications/ercuserassigned",
|
||||
"quantity": 15,
|
||||
"dimension": "dim1",
|
||||
"effectiveStartTime": "2021-02-19T16:59:27.5109777-08:00",
|
||||
"planId": "userassigned"
|
||||
},
|
||||
"StatusCode": 400,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "234",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Mon, 22 Feb 2021 17:59:28 GMT",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"X-Azure-Ref": "0APEzYAAAAACN5LeBuhcJRYkJpyTT05\u002BJV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-correlationid": "ceefdb46-d4bb-4b3a-a339-2a58fed06095",
|
||||
"x-ms-requestid": "ceefdb46-d4bb-4b3a-a339-2a58fed06095",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
"message": "One or more errors have occurred.",
|
||||
"target": "usageEventRequest",
|
||||
"details": [
|
||||
{
|
||||
"message": "The effective time provided is has expired or is in future.",
|
||||
"target": "effectiveStartTime",
|
||||
"code": "BadArgument"
|
||||
}
|
||||
],
|
||||
"code": "BadArgument"
|
||||
}
|
||||
}
|
||||
],
|
||||
"Variables": {
|
||||
"RandomSeed": "1496533948"
|
||||
}
|
||||
}
|
|
@ -6,43 +6,43 @@
|
|||
"RequestHeaders": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Sanitized",
|
||||
"Request-Id": "|a0f2d504-42abcd9c1c789a47.",
|
||||
"traceparent": "00-0edf9d454a9dff41bdb69ce1ff64c89b-22ba01d50b801c47-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "fcf5a7ee-1b2f-a327-a5aa-09b406b5fe11",
|
||||
"x-ms-marketplace-token": "RUA01U9XFK7hkUoCGo0yOCEnXyJHu3cP9VihTQREWTyUkDySoSiMb5j3t3PHXPZUIPN61g1IRQESVIfVRimE\u002BXfdKYiMjg9El3nP0AFhYxuuRMX4jhGeaJHP1JAdz9SP0cti/o6z3RgJDzWTN0eXtLgzbCoRUgdWa64/iHGIFKN30RA9njDxuJkuUp1Ml3wFsQKYcq4HjfD5lUcYOw6amefQ4RzHk9L\u002Bkrn83OrHfwo=",
|
||||
"x-ms-marketplace-token": "9EVFKOQwhUCgLB0OKLRdav6AoOXHDKqTUyYgGlJpDy92RdX8XGA\u002BEbv8XjBcKfcduQW0ggoG2xKszgQozWkU1yUouS\u002B4xsy7xaCSiJRgg6XMkXI9RJV\u002BpdD1/NbSGQIS7gqrxNziYDApXmSRvcd7EuTfdZK3vnsgcWf19g1qpVp\u002BooAVyCPb8sPvmSuOifJxdvHZu\u002B99YvQURPKnnBchnJK2VQqxbNJZ1e3ZyhYxT28=",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
},
|
||||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "1461",
|
||||
"Content-Length": "1514",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "b13604d0-783c-43dd-9c9a-c7b6cd552223",
|
||||
"x-ms-correlationid": "80f386cb-a41c-42a5-a006-2e1eba6988ab",
|
||||
"x-ms-requestid": "80f386cb-a41c-42a5-a006-2e1eba6988ab",
|
||||
"X-Azure-Ref": "0shUwYAAAAAA4rIAkikrQQJcpo0RyxIXfV1NURURHRTA4MjIAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "fe033c72-2987-4fd0-80f3-843423ec73d2",
|
||||
"x-ms-correlationid": "3ff85122-e3c1-4913-bd1b-67d6858aae46",
|
||||
"x-ms-requestid": "3ff85122-e3c1-4913-bd1b-67d6858aae46",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
"id": "0ee05fcf-0dcb-f015-d459-58b630f59525",
|
||||
"subscriptionName": "redmond120",
|
||||
"id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842",
|
||||
"subscriptionName": "Redmond121",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"planId": "silver",
|
||||
"subscription": {
|
||||
"id": "0ee05fcf-0dcb-f015-d459-58b630f59525",
|
||||
"id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "redmond120",
|
||||
"saasSubscriptionStatus": "PendingFulfillmentStart",
|
||||
"name": "Redmond121",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -50,7 +50,7 @@
|
|||
"puid": "10033FFFA7593A0D",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.80.156.103:25728"
|
||||
"clienT-IP": "40.80.156.103:6720"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
|
@ -59,10 +59,12 @@
|
|||
"puid": "10033FFFA7593A0D",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.80.156.103:25728"
|
||||
"clienT-IP": "40.80.156.103:6720"
|
||||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-21T00:00:00Z",
|
||||
"endDate": "2021-02-20T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -73,12 +75,12 @@
|
|||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "96ff6b82-c671-4122-b31a-e3033d2e5ba0",
|
||||
"fulfillmentId": "8441cb76-fe06-434f-ad2a-cab6bff9ccc4",
|
||||
"sessionId": "f4919bd3-7eb4-47a4-990b-90c750c3fce1",
|
||||
"fulfillmentId": "33f11f78-64d2-4ea2-a7ec-c4bc8581542b",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-20T18:29:27.3784172Z",
|
||||
"lastModified": "2021-01-20T18:30:26.4474061Z",
|
||||
"created": "2021-01-21T18:47:25.2241546Z",
|
||||
"lastModified": "2021-01-21T21:58:31.1651311Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,92 @@
|
|||
{
|
||||
"Entries": [
|
||||
{
|
||||
"RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/resolve?api-version=2018-08-31",
|
||||
"RequestMethod": "POST",
|
||||
"RequestHeaders": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Sanitized",
|
||||
"traceparent": "00-b78beb8ecdf3784097562713e0abf9db-58f57f99a1cf3b4d-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "8ee70faf-9b5f-e40d-dbb9-ba6a9b5da94e",
|
||||
"x-ms-marketplace-token": "9EVFKOQwhUCgLB0OKLRdav6AoOXHDKqTUyYgGlJpDy92RdX8XGA\u002BEbv8XjBcKfcduQW0ggoG2xKszgQozWkU1yUouS\u002B4xsy7xaCSiJRgg6XMkXI9RJV\u002BpdD1/NbSGQIS7gqrxNziYDApXmSRvcd7EuTfdZK3vnsgcWf19g1qpVp\u002BooAVyCPb8sPvmSuOifJxdvHZu\u002B99YvQURPKnnBchnJK2VQqxbNJZ1e3ZyhYxT28=",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
},
|
||||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "1514",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:57 GMT",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"X-Azure-Ref": "0shUwYAAAAAAFPbOZIcoSSa2oAlvjxxwfV1NURURHRTA4MDgAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "94b5dd49-d367-4d39-862f-694236957f81",
|
||||
"x-ms-correlationid": "b0baff30-027a-46f7-af5f-0eefbb2d4114",
|
||||
"x-ms-requestid": "b0baff30-027a-46f7-af5f-0eefbb2d4114",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
"id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842",
|
||||
"subscriptionName": "Redmond121",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"planId": "silver",
|
||||
"subscription": {
|
||||
"id": "da8dc4ae-4cdf-ed6b-e12e-9d0219306842",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond121",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
|
||||
"puid": "10033FFFA7593A0D",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.80.156.103:6720"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
|
||||
"puid": "10033FFFA7593A0D",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.80.156.103:6720"
|
||||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-21T00:00:00Z",
|
||||
"endDate": "2021-02-20T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
"isTest": false,
|
||||
"isFreeTrial": false,
|
||||
"allowedCustomerOperations": [
|
||||
"Delete",
|
||||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "f4919bd3-7eb4-47a4-990b-90c750c3fce1",
|
||||
"fulfillmentId": "33f11f78-64d2-4ea2-a7ec-c4bc8581542b",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-21T18:47:25.2241546Z",
|
||||
"lastModified": "2021-01-21T21:58:31.1651311Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"Variables": {
|
||||
"RandomSeed": "487910263"
|
||||
}
|
||||
}
|
|
@ -8,7 +8,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "01ecc810-a0fe-0522-8aa2-dadb8f6fca87",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -16,19 +16,19 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "83978",
|
||||
"Content-Length": "85609",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"ETag": "\u002227766668-2969-477b-900e-099c74fb0560\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:58 GMT",
|
||||
"ETag": "\u00226f8c64f5-e920-49c2-8455-48a956951fa8\u0022",
|
||||
"Set-Cookie": [
|
||||
"ARRAffinity=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=540d435d9e124887614425ac3a1a59170072a70f62fae90a951d423a1d05d580;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
"ARRAffinity=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;Secure;Domain=marketplaceapi.microsoft.com",
|
||||
"ARRAffinitySameSite=e198afec6581a1603d516688b9e05d55e216a7a6a28fad970baf7d024a095305;Path=/;HttpOnly;SameSite=None;Secure;Domain=marketplaceapi.microsoft.com"
|
||||
],
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "87fa65e8-2a39-4c8e-8831-58a0c3474ba9",
|
||||
"x-ms-correlationid": "09c6e7ce-8509-42e7-84c1-fabf7b72de9b",
|
||||
"x-ms-requestid": "09c6e7ce-8509-42e7-84c1-fabf7b72de9b",
|
||||
"X-Azure-Ref": "0sxUwYAAAAABIhGXYH9i6TKh3uwBa9vWGV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "12f6ea6d-af11-4df7-bf9d-2b14630bc01e",
|
||||
"x-ms-correlationid": "4282ce0b-50a5-49f5-a331-1b11fcc59776",
|
||||
"x-ms-requestid": "4282ce0b-50a5-49f5-a331-1b11fcc59776",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -133,8 +133,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -150,7 +150,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T17:41:07.1576845Z",
|
||||
"lastModified": "2021-02-01T22:33:27.6541116Z",
|
||||
"lastModified": "2021-02-11T21:56:01.1229201Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -1859,8 +1859,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-12T00:00:00Z",
|
||||
"endDate": "2021-02-11T00:00:00Z",
|
||||
"startDate": "2021-02-12T00:00:00Z",
|
||||
"endDate": "2021-03-11T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -1876,7 +1876,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-29T19:24:46.8480754Z",
|
||||
"lastModified": "2021-01-12T18:15:04.5716647Z",
|
||||
"lastModified": "2021-02-12T04:17:22.9227318Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2009,8 +2009,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2026,7 +2026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-06T15:48:58.5963255Z",
|
||||
"lastModified": "2021-01-11T00:01:33.4511326Z",
|
||||
"lastModified": "2021-02-11T02:18:11.7678927Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2267,8 +2267,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -2284,7 +2284,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T18:12:41.5561984Z",
|
||||
"lastModified": "2021-01-11T21:25:38.6063496Z",
|
||||
"lastModified": "2021-02-11T21:19:06.6443612Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -2998,6 +2998,62 @@
|
|||
"created": "2021-01-22T17:46:42.8121831Z",
|
||||
"lastModified": "2021-01-22T17:56:35.4880589Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
"id": "489f64b6-98ec-a062-a8b4-5367484d1d14",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "scs-saas-mixing-preview",
|
||||
"name": "test",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"purchaser": {
|
||||
"emailId": "scott@scottseely.com",
|
||||
"objectId": "768237ff-8384-4084-95ac-3f6f4257b52c",
|
||||
"tenantId": "0f1a53c8-1135-457a-bcdb-d58abc87e4b7",
|
||||
"groupIds": [
|
||||
"600282f1-340a-46eb-a0a7-8bc8ad486f3a",
|
||||
"87913333-08ab-4f20-92d8-a9acabca9272",
|
||||
"f3f55d87-6da8-4970-8305-76d1c4cccb3c"
|
||||
],
|
||||
"puid": "00037FFE8050EAD6",
|
||||
"iss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"idp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/",
|
||||
"clienT-IP": "40.78.62.97:18436"
|
||||
},
|
||||
"planId": "basic-monthly-or-annual",
|
||||
"term": {
|
||||
"startDate": "2021-02-04T00:00:00Z",
|
||||
"endDate": "2021-03-03T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
"isTest": false,
|
||||
"isFreeTrial": false,
|
||||
"allowedCustomerOperations": [
|
||||
"Delete",
|
||||
"Update",
|
||||
"Read"
|
||||
],
|
||||
"sessionId": "6b8251ae-b04e-43af-97f0-fa8181ad77a0",
|
||||
"fulfillmentId": "4b930d3b-3bfa-4fba-af10-069638867b9c",
|
||||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-02-04T17:29:21.8405148Z",
|
||||
"lastModified": "2021-02-04T17:32:19.0300527Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
],
|
||||
"@nextLink": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/?continuationToken=%5b%7b%22token%22%3anull%2c%22range%22%3a%7b%22min%22%3a%2205C1C9CD673398%22%2c%22max%22%3a%2205C1D9CD673398%22%7d%7d%5d\u0026api-version=2018-08-31"
|
||||
|
@ -3011,7 +3067,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "2e9df491-e219-3e56-b088-86b8388091f5",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -3019,15 +3075,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "89604",
|
||||
"Content-Length": "89603",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"ETag": "\u0022c48866fb-be02-477b-817e-ef8cafcde43f\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "1509c570-cedb-465b-8e7e-e09d476c4229",
|
||||
"x-ms-correlationid": "ff47fa37-5b75-4dfc-8bad-c0aabddaf255",
|
||||
"x-ms-requestid": "ff47fa37-5b75-4dfc-8bad-c0aabddaf255",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:58 GMT",
|
||||
"ETag": "\u0022de5a8b8f-a6dd-484f-8a2f-20c73d78aacc\u0022",
|
||||
"X-Azure-Ref": "0sxUwYAAAAAD6hz1Hecx5TaM2kzjEFzOgV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "915cfcac-e2cb-49ca-b841-050c3aa9f82d",
|
||||
"x-ms-correlationid": "8a640257-7d10-40db-a412-cf70e3581d08",
|
||||
"x-ms-requestid": "8a640257-7d10-40db-a412-cf70e3581d08",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -5548,8 +5604,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -5565,7 +5621,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-06-11T19:13:14.9763056Z",
|
||||
"lastModified": "2021-01-11T13:45:22.9808889Z",
|
||||
"lastModified": "2021-02-11T13:18:00.464219Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -6274,7 +6330,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "9a49e4b0-9cd2-4d6e-41b0-81e1cf2d7718",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -6282,15 +6338,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "118394",
|
||||
"Content-Length": "118383",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"ETag": "\u002272af8867-074a-4250-a272-063a5f3e3175\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "c1efb395-7b43-4523-871b-b7a91534d03b",
|
||||
"x-ms-correlationid": "6e3080cf-4506-400e-8dd4-3ac75b9a37f8",
|
||||
"x-ms-requestid": "6e3080cf-4506-400e-8dd4-3ac75b9a37f8",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:58 GMT",
|
||||
"ETag": "\u0022db6831b9-7a99-4a2c-842c-3d896a932960\u0022",
|
||||
"X-Azure-Ref": "0sxUwYAAAAAB3oiU64qvTTKdsJsQdWVg6V1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "ec899c1a-bd31-47b6-ac11-a877ead549d3",
|
||||
"x-ms-correlationid": "eee4c266-99c4-443a-a1bd-220bb0c166ae",
|
||||
"x-ms-requestid": "eee4c266-99c4-443a-a1bd-220bb0c166ae",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -6515,8 +6571,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -6532,7 +6588,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-10-07T16:51:35.2238173Z",
|
||||
"lastModified": "2021-01-07T21:16:38.0056464Z",
|
||||
"lastModified": "2021-02-07T17:36:47.4081955Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8825,8 +8881,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-07T00:00:00Z",
|
||||
"endDate": "2021-02-06T00:00:00Z",
|
||||
"startDate": "2021-02-07T00:00:00Z",
|
||||
"endDate": "2021-03-06T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -8842,7 +8898,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-07T15:38:39.5264795Z",
|
||||
"lastModified": "2021-01-07T13:24:33.1506448Z",
|
||||
"lastModified": "2021-02-07T19:42:33.5592454Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -8894,7 +8950,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T23:19:04.6687978Z",
|
||||
"lastModified": "2021-01-11T21:23:34.7767656Z",
|
||||
"lastModified": "2021-02-11T02:13:53.2938907Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9623,8 +9679,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9640,7 +9696,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-21T17:52:54.0642703Z",
|
||||
"lastModified": "2021-01-21T18:57:17.9829907Z",
|
||||
"lastModified": "2021-02-14T02:51:35.1862122Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9667,8 +9723,8 @@
|
|||
},
|
||||
"planId": "public",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9684,7 +9740,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T18:10:33.2525465Z",
|
||||
"lastModified": "2021-01-14T20:06:23.9230469Z",
|
||||
"lastModified": "2021-02-14T14:48:21.1638543Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9711,8 +9767,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9728,7 +9784,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-22T21:11:58.5885238Z",
|
||||
"lastModified": "2021-01-14T22:32:18.8778354Z",
|
||||
"lastModified": "2021-02-14T12:33:52.5867286Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9861,8 +9917,8 @@
|
|||
},
|
||||
"planId": "instant-portal-standard",
|
||||
"term": {
|
||||
"startDate": "2021-01-05T00:00:00Z",
|
||||
"endDate": "2021-02-04T00:00:00Z",
|
||||
"startDate": "2021-02-05T00:00:00Z",
|
||||
"endDate": "2021-03-04T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9878,7 +9934,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-05T02:42:08.2082173Z",
|
||||
"lastModified": "2021-01-05T15:02:26.6216391Z",
|
||||
"lastModified": "2021-02-05T08:37:15.6026716Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -9957,8 +10013,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-19T00:00:00Z",
|
||||
"endDate": "2021-02-18T00:00:00Z",
|
||||
"startDate": "2021-02-19T00:00:00Z",
|
||||
"endDate": "2021-03-18T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -9974,7 +10030,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-11-19T17:49:25.4024396Z",
|
||||
"lastModified": "2021-01-19T08:07:38.8873732Z",
|
||||
"lastModified": "2021-02-19T02:01:09.0269304Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10334,7 +10390,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "redmond115",
|
||||
"saasSubscriptionStatus": "PendingFulfillmentStart",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@hotmail.com",
|
||||
"objectId": "d2858116-704b-480d-acf8-340adbab114f",
|
||||
|
@ -10376,7 +10432,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-15T22:01:18.6098849Z",
|
||||
"lastModified": "2021-01-15T22:01:22.5319981Z",
|
||||
"lastModified": "2021-02-15T06:27:41.7806117Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -10481,7 +10537,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "5407abdd-f736-a022-4e61-0cad158aebb6",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -10491,13 +10547,13 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "97842",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"ETag": "\u0022af105ef1-38d4-4c8d-ba78-e349b65ce739\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "21b2c5fa-7099-4533-aaea-7f191620e98f",
|
||||
"x-ms-correlationid": "0e861ae9-dd78-457f-b572-9821ff6f8b51",
|
||||
"x-ms-requestid": "0e861ae9-dd78-457f-b572-9821ff6f8b51",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:58 GMT",
|
||||
"ETag": "\u00223a211a3d-f19f-410b-a8e8-6fa3a09d269d\u0022",
|
||||
"X-Azure-Ref": "0sxUwYAAAAADhetnQesh0Q7W18Bt/z39XV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "7d331ad4-6eb7-4826-a8e4-98c0246a2ba9",
|
||||
"x-ms-correlationid": "e66fa77c-ffb8-4728-acac-973bc74fc31a",
|
||||
"x-ms-requestid": "e66fa77c-ffb8-4728-acac-973bc74fc31a",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -13066,8 +13122,8 @@
|
|||
},
|
||||
"planId": "platinum",
|
||||
"term": {
|
||||
"startDate": "2021-01-10T00:00:00Z",
|
||||
"endDate": "2021-02-09T00:00:00Z",
|
||||
"startDate": "2021-02-10T00:00:00Z",
|
||||
"endDate": "2021-03-09T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13083,7 +13139,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-08-10T16:29:54.8329451Z",
|
||||
"lastModified": "2021-01-10T18:15:18.1894662Z",
|
||||
"lastModified": "2021-02-10T03:47:57.9818166Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13154,8 +13210,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13171,7 +13227,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-14T23:24:49.8054763Z",
|
||||
"lastModified": "2021-01-14T18:31:57.2401121Z",
|
||||
"lastModified": "2021-02-14T20:46:24.2746881Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13198,8 +13254,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-15T00:00:00Z",
|
||||
"endDate": "2021-02-14T00:00:00Z",
|
||||
"startDate": "2021-02-15T00:00:00Z",
|
||||
"endDate": "2021-03-14T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13215,7 +13271,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-09-15T19:47:31.1572826Z",
|
||||
"lastModified": "2021-01-15T12:34:41.6980612Z",
|
||||
"lastModified": "2021-02-15T11:35:56.7024853Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13426,8 +13482,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -13443,7 +13499,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-28T17:32:17.3885671Z",
|
||||
"lastModified": "2021-01-14T02:02:09.9020713Z",
|
||||
"lastModified": "2021-02-14T13:03:16.3618579Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13821,7 +13877,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-20T18:29:27.3784172Z",
|
||||
"lastModified": "2021-01-20T18:30:26.4474061Z",
|
||||
"lastModified": "2021-02-13T06:06:32.6033421Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -13934,7 +13990,7 @@
|
|||
"Authorization": "Sanitized",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "2303514c-2325-8de1-adc5-4f9f97ebe5ff",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -13942,15 +13998,15 @@
|
|||
"RequestBody": null,
|
||||
"StatusCode": 200,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "115879",
|
||||
"Content-Length": "115884",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"ETag": "\u0022931e7098-2394-4993-92b9-115f668a5f92\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "2fe6d6d0-520f-4369-9699-1ccaae15526e",
|
||||
"x-ms-correlationid": "ea133561-31a0-489f-b7c4-68c56d188448",
|
||||
"x-ms-requestid": "ea133561-31a0-489f-b7c4-68c56d188448",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:58 GMT",
|
||||
"ETag": "\u00224825d9db-8b63-4b74-aa8d-6cc4b94007f8\u0022",
|
||||
"X-Azure-Ref": "0sxUwYAAAAAC8RPp0mw5VRq1TCMqg6INnV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "9a3cd66c-8eda-4e2a-b4fc-410f44ef2435",
|
||||
"x-ms-correlationid": "fc2d1b28-e269-4c63-bd4a-76c0b90e42f6",
|
||||
"x-ms-requestid": "fc2d1b28-e269-4c63-bd4a-76c0b90e42f6",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
|
@ -14683,8 +14739,8 @@
|
|||
},
|
||||
"planId": "gold",
|
||||
"term": {
|
||||
"startDate": "2021-01-09T00:00:00Z",
|
||||
"endDate": "2021-02-08T00:00:00Z",
|
||||
"startDate": "2021-02-09T00:00:00Z",
|
||||
"endDate": "2021-03-08T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -14700,7 +14756,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2019-12-09T13:18:30.9138381Z",
|
||||
"lastModified": "2021-01-09T22:58:42.1164947Z",
|
||||
"lastModified": "2021-02-09T10:56:54.980815Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15237,8 +15293,8 @@
|
|||
},
|
||||
"planId": "base",
|
||||
"term": {
|
||||
"startDate": "2021-01-13T00:00:00Z",
|
||||
"endDate": "2021-02-12T00:00:00Z",
|
||||
"startDate": "2021-02-13T00:00:00Z",
|
||||
"endDate": "2021-03-12T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -15254,7 +15310,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-02-13T18:17:58.7971727Z",
|
||||
"lastModified": "2021-01-13T19:41:10.283823Z",
|
||||
"lastModified": "2021-02-13T04:25:20.8252684Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15414,7 +15470,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond 3-2-1",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -15446,7 +15502,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-03-02T16:43:30.3063035Z",
|
||||
"lastModified": "2021-02-02T18:18:19.1298285Z",
|
||||
"lastModified": "2021-02-08T18:10:24.3657561Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -15970,7 +16026,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-04-09T23:40:30.887548Z",
|
||||
"lastModified": "2021-01-09T11:39:50.1911926Z",
|
||||
"lastModified": "2021-02-09T22:57:20.5118236Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -16703,8 +16759,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-11T00:00:00Z",
|
||||
"endDate": "2021-02-10T00:00:00Z",
|
||||
"startDate": "2021-02-11T00:00:00Z",
|
||||
"endDate": "2021-03-10T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -16720,7 +16776,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-05-11T15:36:22.2336759Z",
|
||||
"lastModified": "2021-01-11T14:02:04.8101096Z",
|
||||
"lastModified": "2021-02-11T11:23:24.9257264Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -17786,8 +17842,8 @@
|
|||
},
|
||||
"planId": "silver",
|
||||
"term": {
|
||||
"startDate": "2021-01-14T00:00:00Z",
|
||||
"endDate": "2021-02-13T00:00:00Z",
|
||||
"startDate": "2021-02-14T00:00:00Z",
|
||||
"endDate": "2021-03-13T00:00:00Z",
|
||||
"termUnit": "P1M"
|
||||
},
|
||||
"autoRenew": true,
|
||||
|
@ -17803,7 +17859,7 @@
|
|||
"storeFront": "AzurePortal",
|
||||
"sandboxType": "None",
|
||||
"created": "2020-10-29T14:09:59.8172835Z",
|
||||
"lastModified": "2021-01-14T02:19:03.7107539Z",
|
||||
"lastModified": "2021-02-14T18:57:22.4601469Z",
|
||||
"sessionMode": "None"
|
||||
},
|
||||
{
|
||||
|
@ -18016,7 +18072,7 @@
|
|||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "contoso_saas_offer-preview",
|
||||
"name": "Redmond1292",
|
||||
"saasSubscriptionStatus": "Subscribed",
|
||||
"saasSubscriptionStatus": "Unsubscribed",
|
||||
"beneficiary": {
|
||||
"emailId": "ercenk@microsoft.com",
|
||||
"objectId": "df30a7e0-98dc-41a6-afa6-d1ddea551529",
|
||||
|
@ -18054,7 +18110,7 @@
|
|||
"storeFront": "ARMApiCall",
|
||||
"sandboxType": "None",
|
||||
"created": "2021-01-29T21:39:09.5744025Z",
|
||||
"lastModified": "2021-01-29T21:48:16.511869Z",
|
||||
"lastModified": "2021-02-09T15:25:01.2941457Z",
|
||||
"sessionMode": "None"
|
||||
}
|
||||
]
|
||||
|
@ -18067,10 +18123,10 @@
|
|||
"Authorization": "Sanitized",
|
||||
"Content-Length": "17",
|
||||
"Content-Type": "application/json",
|
||||
"Request-Id": "|a0f2d505-42abcd9c1c789a47.",
|
||||
"traceparent": "00-63d2766dddbb8d4e9c7fe76f483ec2d6-3692b95723d2ee44-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "c461398f-c786-a290-6dd6-5d55be3b755f",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -18081,29 +18137,29 @@
|
|||
"StatusCode": 202,
|
||||
"ResponseHeaders": {
|
||||
"Content-Length": "0",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"Operation-Id": "104abc13-26d1-4986-8a57-cd85b2e36f01",
|
||||
"Operation-Location": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/104abc13-26d1-4986-8a57-cd85b2e36f01?api-version=2018-08-31",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:59 GMT",
|
||||
"Operation-Id": "0dc96515-6031-46bc-be10-99d09430ccfb",
|
||||
"Operation-Location": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/0dc96515-6031-46bc-be10-99d09430ccfb?api-version=2018-08-31",
|
||||
"Retry-After": "10",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "cd277bd4-8628-493b-bcce-dfbaabf68cac",
|
||||
"x-ms-correlationid": "104abc13-26d1-4986-8a57-cd85b2e36f01",
|
||||
"x-ms-requestid": "104abc13-26d1-4986-8a57-cd85b2e36f01",
|
||||
"X-Azure-Ref": "0sxUwYAAAAACEQlRUfwBaR7U5Rp0NCbemV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "4686de75-b73a-4868-a73b-2d0fb1ecb89e",
|
||||
"x-ms-correlationid": "0dc96515-6031-46bc-be10-99d09430ccfb",
|
||||
"x-ms-requestid": "0dc96515-6031-46bc-be10-99d09430ccfb",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": []
|
||||
},
|
||||
{
|
||||
"RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/104abc13-26d1-4986-8a57-cd85b2e36f01?api-version=2018-08-31",
|
||||
"RequestUri": "https://marketplaceapi.microsoft.com/api/saas/subscriptions/de8efdae-6fa2-47ba-7903-3ccda226f82f/operations/0dc96515-6031-46bc-be10-99d09430ccfb?api-version=2018-08-31",
|
||||
"RequestMethod": "GET",
|
||||
"RequestHeaders": {
|
||||
"Accept": "application/json",
|
||||
"Authorization": "Sanitized",
|
||||
"Request-Id": "|a0f2d506-42abcd9c1c789a47.",
|
||||
"traceparent": "00-1606207df8e73244b354fcd14f4087f7-1aecd7da8a9fa946-00",
|
||||
"User-Agent": [
|
||||
"azsdk-net-Microsoft.Marketplace/1.0.0",
|
||||
"(.NET Framework 4.8.4311.0; Microsoft Windows 10.0.21301 )"
|
||||
"(.NET 5.0.2; Microsoft Windows 10.0.21313)"
|
||||
],
|
||||
"x-ms-client-request-id": "5d0f9276-208a-3078-0374-be33fbbf1294",
|
||||
"x-ms-return-client-request-id": "true"
|
||||
|
@ -18113,24 +18169,24 @@
|
|||
"ResponseHeaders": {
|
||||
"Content-Length": "372",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Date": "Thu, 04 Feb 2021 16:37:14 GMT",
|
||||
"ETag": "\u002279859b04-d5a7-47af-9d41-7d4ed12f1a4e\u0022",
|
||||
"Server": "Microsoft-IIS/10.0",
|
||||
"x-content-type-options": "nosniff",
|
||||
"x-ms-activityid": "72225751-a953-4816-8aaa-c807ce41845a",
|
||||
"x-ms-correlationid": "da6701e7-7ec9-4c99-8296-b5d0774a1ccc",
|
||||
"x-ms-requestid": "da6701e7-7ec9-4c99-8296-b5d0774a1ccc",
|
||||
"Date": "Fri, 19 Feb 2021 19:46:59 GMT",
|
||||
"ETag": "\u00229c78a1ec-c46e-4d9f-a83f-95212523ac12\u0022",
|
||||
"X-Azure-Ref": "0sxUwYAAAAABuwlqrwfetRaV4T\u002BdIunFkV1NURURHRTA4MTAAMzEwNGIwOWItOTRhZS00NmZjLTkwMDYtMWVhMjA3YmE3YzE4",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"x-ms-activityid": "38046609-30c0-495f-a730-9cc576834469",
|
||||
"x-ms-correlationid": "b4819ad4-3505-43b4-8f58-2974c256d34f",
|
||||
"x-ms-requestid": "b4819ad4-3505-43b4-8f58-2974c256d34f",
|
||||
"X-Powered-By": "ASP.NET"
|
||||
},
|
||||
"ResponseBody": {
|
||||
"id": "104abc13-26d1-4986-8a57-cd85b2e36f01",
|
||||
"activityId": "104abc13-26d1-4986-8a57-cd85b2e36f01",
|
||||
"id": "0dc96515-6031-46bc-be10-99d09430ccfb",
|
||||
"activityId": "0dc96515-6031-46bc-be10-99d09430ccfb",
|
||||
"publisherId": "testtestindustryexperiencestest",
|
||||
"offerId": "ercsaastest1-preview",
|
||||
"planId": "gold",
|
||||
"operationRequestSource": "Partner",
|
||||
"subscriptionId": "de8efdae-6fa2-47ba-7903-3ccda226f82f",
|
||||
"timeStamp": "2021-02-04T16:37:15.5725397Z",
|
||||
"timeStamp": "2021-02-19T19:46:59.6111668Z",
|
||||
"action": "ChangePlan",
|
||||
"status": "NotStarted"
|
||||
}
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<packageSources>
|
||||
<add key="Azure SDK Tools" value="https://azuresdkartifacts.blob.core.windows.net/azure-sdk-tools/index.json" protocolVersion="3" />
|
||||
</packageSources>
|
||||
</configuration>
|
Загрузка…
Ссылка в новой задаче