diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs
index 3705c404cf17e..90a4c08c1c332 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/GalleryApplicationVersionPublishingProfile.cs
@@ -17,7 +17,7 @@ namespace Microsoft.Azure.Management.Compute.Models
using System.Linq;
///
- /// The publishing profile of a gallery Image Version.
+ /// The publishing profile of a gallery image version.
///
public partial class GalleryApplicationVersionPublishingProfile : GalleryArtifactPublishingProfileBase
{
@@ -45,24 +45,21 @@ public GalleryApplicationVersionPublishingProfile()
/// deployed from the latest version of the Image Definition won't use
/// this Image Version.
/// The timestamp for when the gallery
- /// Image Version is published.
+ /// image version is published.
/// The end of life date of the gallery
- /// Image Version. This property can be used for decommissioning
+ /// image version. This property can be used for decommissioning
/// purposes. This property is updatable.
/// Specifies the storage account type
/// to be used to store the image. This property is not updatable.
/// Possible values include: 'Standard_LRS', 'Standard_ZRS',
/// 'Premium_LRS'
- /// Optional. May be used to help process
- /// this file. The type of file contained in the source, e.g. zip,
- /// json, etc.
/// Optional. Whether or not this
/// application reports health.
- public GalleryApplicationVersionPublishingProfile(UserArtifactSource source, IList targetRegions = default(IList), int? replicaCount = default(int?), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), string storageAccountType = default(string), string contentType = default(string), bool? enableHealthCheck = default(bool?))
+ public GalleryApplicationVersionPublishingProfile(UserArtifactSource source, IList targetRegions = default(IList), int? replicaCount = default(int?), bool? excludeFromLatest = default(bool?), System.DateTime? publishedDate = default(System.DateTime?), System.DateTime? endOfLifeDate = default(System.DateTime?), string storageAccountType = default(string), UserArtifactManage manageActions = default(UserArtifactManage), bool? enableHealthCheck = default(bool?))
: base(targetRegions, replicaCount, excludeFromLatest, publishedDate, endOfLifeDate, storageAccountType)
{
Source = source;
- ContentType = contentType;
+ ManageActions = manageActions;
EnableHealthCheck = enableHealthCheck;
CustomInit();
}
@@ -78,11 +75,9 @@ public GalleryApplicationVersionPublishingProfile()
public UserArtifactSource Source { get; set; }
///
- /// Gets or sets optional. May be used to help process this file. The
- /// type of file contained in the source, e.g. zip, json, etc.
///
- [JsonProperty(PropertyName = "contentType")]
- public string ContentType { get; set; }
+ [JsonProperty(PropertyName = "manageActions")]
+ public UserArtifactManage ManageActions { get; set; }
///
/// Gets or sets optional. Whether or not this application reports
@@ -107,6 +102,10 @@ public virtual void Validate()
{
Source.Validate();
}
+ if (ManageActions != null)
+ {
+ ManageActions.Validate();
+ }
}
}
}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs
new file mode 100644
index 0000000000000..c071bf5d91f4d
--- /dev/null
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactManage.cs
@@ -0,0 +1,95 @@
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+// Licensed under the MIT License. See License.txt in the project root for
+// license information.
+//
+// Code generated by Microsoft (R) AutoRest Code Generator.
+// Changes may cause incorrect behavior and will be lost if the code is
+// regenerated.
+//
+
+namespace Microsoft.Azure.Management.Compute.Models
+{
+ using Microsoft.Rest;
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ public partial class UserArtifactManage
+ {
+ ///
+ /// Initializes a new instance of the UserArtifactManage class.
+ ///
+ public UserArtifactManage()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the UserArtifactManage class.
+ ///
+ /// Required. The path and arguments to install
+ /// the gallery application. This is limited to 4096
+ /// characters.
+ /// Required. The path and arguments to remove the
+ /// gallery application. This is limited to 4096 characters.
+ /// Optional. The path and arguments to update the
+ /// gallery application. If not present, then update operation will
+ /// invoke remove command on the previous version and install command
+ /// on the current version of the gallery application. This is limited
+ /// to 4096 characters.
+ public UserArtifactManage(string install, string remove, string update = default(string))
+ {
+ Install = install;
+ Remove = remove;
+ Update = update;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets required. The path and arguments to install the
+ /// gallery application. This is limited to 4096 characters.
+ ///
+ [JsonProperty(PropertyName = "install")]
+ public string Install { get; set; }
+
+ ///
+ /// Gets or sets required. The path and arguments to remove the gallery
+ /// application. This is limited to 4096 characters.
+ ///
+ [JsonProperty(PropertyName = "remove")]
+ public string Remove { get; set; }
+
+ ///
+ /// Gets or sets optional. The path and arguments to update the gallery
+ /// application. If not present, then update operation will invoke
+ /// remove command on the previous version and install command on the
+ /// current version of the gallery application. This is limited to 4096
+ /// characters.
+ ///
+ [JsonProperty(PropertyName = "update")]
+ public string Update { get; set; }
+
+ ///
+ /// Validate the object.
+ ///
+ ///
+ /// Thrown if validation fails
+ ///
+ public virtual void Validate()
+ {
+ if (Install == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Install");
+ }
+ if (Remove == null)
+ {
+ throw new ValidationException(ValidationRules.CannotBeNull, "Remove");
+ }
+ }
+ }
+}
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs
index a37d1ec81227a..3af7ac1a8a5dc 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/src/Generated/Models/UserArtifactSource.cs
@@ -30,14 +30,15 @@ public UserArtifactSource()
///
/// Initializes a new instance of the UserArtifactSource class.
///
- /// Required. The fileName of the
- /// artifact.
/// Required. The mediaLink of the artifact,
- /// must be a readable storage blob.
- public UserArtifactSource(string fileName, string mediaLink)
+ /// must be a readable storage page blob.
+ /// Optional. The
+ /// defaultConfigurationLink of the artifact, must be a readable
+ /// storage page blob.
+ public UserArtifactSource(string mediaLink, string defaultConfigurationLink = default(string))
{
- FileName = fileName;
MediaLink = mediaLink;
+ DefaultConfigurationLink = defaultConfigurationLink;
CustomInit();
}
@@ -46,19 +47,20 @@ public UserArtifactSource(string fileName, string mediaLink)
///
partial void CustomInit();
- ///
- /// Gets or sets required. The fileName of the artifact.
- ///
- [JsonProperty(PropertyName = "fileName")]
- public string FileName { get; set; }
-
///
/// Gets or sets required. The mediaLink of the artifact, must be a
- /// readable storage blob.
+ /// readable storage page blob.
///
[JsonProperty(PropertyName = "mediaLink")]
public string MediaLink { get; set; }
+ ///
+ /// Gets or sets optional. The defaultConfigurationLink of the
+ /// artifact, must be a readable storage page blob.
+ ///
+ [JsonProperty(PropertyName = "defaultConfigurationLink")]
+ public string DefaultConfigurationLink { get; set; }
+
///
/// Validate the object.
///
@@ -67,10 +69,6 @@ public UserArtifactSource(string fileName, string mediaLink)
///
public virtual void Validate()
{
- if (FileName == null)
- {
- throw new ValidationException(ValidationRules.CannotBeNull, "FileName");
- }
if (MediaLink == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "MediaLink");
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs
index 1aa9feb427752..3706d84917521 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/ScenarioTests/GalleryTests.cs
@@ -565,9 +565,13 @@ private GalleryApplicationVersion GetTestInputGalleryApplicationVersion(string a
{
Source = new UserArtifactSource
{
- FileName = "test.zip",
MediaLink = applicationMediaLink
},
+ ManageActions = new UserArtifactManage
+ {
+ Install = "powershell -command \"Expand-Archive -Path test.zip -DestinationPath C:\\package\"",
+ Remove = "del C:\\package "
+ },
ReplicaCount = 1,
StorageAccountType = StorageAccountType.StandardLRS,
TargetRegions = new List {
diff --git a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json
index a199403531989..856a2fb0bb5f8 100644
--- a/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json
+++ b/sdk/compute/Microsoft.Azure.Management.Compute/tests/SessionRecords/GalleryTests/GalleryApplicationVersion_CRUD_Tests.json
@@ -1,37 +1,34 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg552?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourcegroups/galleryPsTestRg7349?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlZ3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDk/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg552\": \"2020-02-21 01:43:46Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"galleryPsTestRg7349\": \"2021-01-13 22:03:11Z\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "663004ef-1453-487a-9028-50796001c990"
+ "5b812d8d-0536-4ebf-a655-3343ef0a0b0b"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "104"
+ "105"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:43:50 GMT"
- ],
"Pragma": [
"no-cache"
],
@@ -39,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b"
+ "81b85397-00a5-4317-977e-2bb5c20937ed"
],
"x-ms-correlation-request-id": [
- "e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b"
+ "81b85397-00a5-4317-977e-2bb5c20937ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014351Z:e59f39ce-e8e4-47fc-9ab0-ca48cb2c767b"
+ "WESTUS:20210113T220313Z:81b85397-00a5-4317-977e-2bb5c20937ed"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -53,8 +50,11 @@
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:03:12 GMT"
+ ],
"Content-Length": [
- "249"
+ "252"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,25 +63,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552\",\r\n \"name\": \"galleryPsTestRg552\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg552\": \"2020-02-21 01:43:46Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349\",\r\n \"name\": \"galleryPsTestRg7349\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"galleryPsTestRg7349\": \"2021-01-13 22:03:11Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Storage/storageAccounts/saforgallery663?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2NjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c262d983-a865-4960-9221-bc1749ff5aeb"
+ "99b11405-c20f-418b-83ee-efd4902ee329"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
],
"Content-Type": [
@@ -95,62 +95,62 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:43:56 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/1bc1f82d-d2c9-4a08-85cc-f6b2738694ee?monitor=true&api-version=2015-06-15"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/da9c2802-995a-428c-9ab1-c2e72dd6882d?monitor=true&api-version=2015-06-15"
],
"Retry-After": [
"17"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "1bc1f82d-d2c9-4a08-85cc-f6b2738694ee"
+ "da9c2802-995a-428c-9ab1-c2e72dd6882d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1199"
],
"x-ms-correlation-request-id": [
- "f02f1dd6-03a8-456b-8d35-f5be7e04ea22"
+ "55c78afe-e10f-4123-a978-8b991ccb9111"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014356Z:f02f1dd6-03a8-456b-8d35-f5be7e04ea22"
+ "WESTUS:20210113T220323Z:55c78afe-e10f-4123-a978-8b991ccb9111"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Wed, 13 Jan 2021 22:03:22 GMT"
],
"Content-Type": [
"text/plain; charset=utf-8"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/1bc1f82d-d2c9-4a08-85cc-f6b2738694ee?monitor=true&api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMWJjMWY4MmQtZDJjOS00YTA4LTg1Y2MtZjZiMjczODY5NGVlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/da9c2802-995a-428c-9ab1-c2e72dd6882d?monitor=true&api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZGE5YzI4MDItOTk1YS00MjhjLTlhYjEtYzJlNzJkZDY4ODJkP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
]
},
@@ -158,33 +158,33 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:44:13 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "b949b952-7040-4ed9-a7b0-188b37e3772b"
+ "988699ef-0ff7-4d0f-bb02-6c7451f9b7e4"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11999"
],
"x-ms-correlation-request-id": [
- "6b9b0744-127e-4609-b635-71d736f4c9fe"
+ "447861b4-b2cc-406d-a19c-ee8f808c331b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014413Z:6b9b0744-127e-4609-b635-71d736f4c9fe"
+ "WESTUS:20210113T220340Z:447861b4-b2cc-406d-a19c-ee8f808c331b"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:03:39 GMT"
+ ],
"Content-Length": [
"95"
],
@@ -199,21 +199,21 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23d4372f-af91-49d4-bf0f-8d418d7fd71a"
+ "b25de2a2-3b0d-40c8-94ed-668e1bd8fb04"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
]
},
@@ -221,35 +221,35 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:44:23 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "3802b7b8-bc72-413b-a063-e27e83f86330"
+ "02d547f3-6b9f-45f1-b21e-e082cf99e654"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
+ "11998"
],
"x-ms-correlation-request-id": [
- "5050003e-d8df-4a76-841b-e663a831f733"
+ "61e50e72-7c18-47fd-9739-95edabc2ff83"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014424Z:5050003e-d8df-4a76-841b-e663a831f733"
+ "WESTUS:20210113T220350Z:61e50e72-7c18-47fd-9739-95edabc2ff83"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:03:50 GMT"
+ ],
"Content-Length": [
- "775"
+ "770"
],
"Content-Type": [
"application/json"
@@ -258,25 +258,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204\",\r\n \"name\": \"saforgallery6204\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-21T01:43:55.1988592Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6204.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6204.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6204.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6204.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Storage/storageAccounts/saforgallery663\",\r\n \"name\": \"saforgallery663\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-01-13T22:03:20.2775328Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery663.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery663.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery663.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery663.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQ/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Storage/storageAccounts/saforgallery663?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2NjM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "629c5824-c6d1-43ed-a769-fe22a0b0ea3b"
+ "b1f64237-ebc8-428d-922c-a4fcc24286c0"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
]
},
@@ -284,35 +284,35 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:44:24 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "16273c4e-5ab3-4815-83e1-98912db90829"
+ "35edbe37-c2eb-4618-a6f6-411ce4c623ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
+ "11997"
],
"x-ms-correlation-request-id": [
- "ee3a5485-55f9-44aa-a3b8-5b8805f453aa"
+ "b01ca170-ba7d-4d2d-8d59-9fcf36a346d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014424Z:ee3a5485-55f9-44aa-a3b8-5b8805f453aa"
+ "WESTUS:20210113T220350Z:b01ca170-ba7d-4d2d-8d59-9fcf36a346d7"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:03:50 GMT"
+ ],
"Content-Length": [
- "763"
+ "758"
],
"Content-Type": [
"application/json"
@@ -321,25 +321,25 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204\",\r\n \"name\": \"saforgallery6204\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-02-21T01:43:55.1988592Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery6204.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery6204.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery6204.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery6204.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Storage/storageAccounts/saforgallery663\",\r\n \"name\": \"saforgallery663\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-01-13T22:03:20.2775328Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://saforgallery663.blob.core.windows.net/\",\r\n \"queue\": \"https://saforgallery663.queue.core.windows.net/\",\r\n \"table\": \"https://saforgallery663.table.core.windows.net/\",\r\n \"file\": \"https://saforgallery663.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Storage/storageAccounts/saforgallery6204/listKeys?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3NhZm9yZ2FsbGVyeTYyMDQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Storage/storageAccounts/saforgallery663/listKeys?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9zYWZvcmdhbGxlcnk2NjMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "99042ea1-777b-4680-b5bd-ed2635ab09b2"
+ "f7cb1f85-c369-4071-bd08-2fcb53379107"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
"Microsoft.Azure.Management.Storage.StorageManagementClient/4.0.0.0"
]
},
@@ -347,33 +347,33 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:44:24 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
- ],
"x-ms-request-id": [
- "e2f1fd4a-bace-41dd-87c4-de79ab25061e"
+ "0119be0e-2763-4abf-acc5-d88b3071ad58"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "Server": [
+ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-ratelimit-remaining-subscription-resource-requests": [
"11999"
],
"x-ms-correlation-request-id": [
- "78b4dc3f-4049-462a-b12f-506cd8811c7e"
+ "b4fed15a-27ce-400d-904c-ded8a0f706bd"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014424Z:78b4dc3f-4049-462a-b12f-506cd8811c7e"
+ "WESTUS:20210113T220351Z:b4fed15a-27ce-400d-904c-ded8a0f706bd"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:03:50 GMT"
+ ],
"Content-Length": [
"197"
],
@@ -384,26 +384,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"key1\": \"2YSdKFz6VU6a5T/TWnnJ5Opibs0sdVhY0Xps8UxabKcZJqk5tH7THATfEjARpvzmducxQsv1KbYSYGeI8Rs68Q==\",\r\n \"key2\": \"xaxn1X1jsDD+5Sp+g2Ki0WW0bTWdvBvN4qT1QjfAMHCAtUCYHMdxJQpuqGy67/loLiEBvXNQLi+FA5oUjBrPng==\"\r\n}",
+ "ResponseBody": "{\r\n \"key1\": \"BQqBBNrBWYKtgZjFKWnnKEvEJC7fk5P3vwCBX6UDWg5VMNJ6uuOSJkga82wSWaKwQBAVlNfn/MZirsUTGSAA8w==\",\r\n \"key2\": \"Abjm1Rv1pJrBIMz2OkXIWYUAlA295K4azSaQWUBetyoomIAZkiu1d4p4SN30XIXK35sQu4KsywDoFVzUNC/7rw==\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bdcc1f4c-ba78-49e6-9e13-78246c775dfe"
+ "fa2267d3-fcd4-47ad-9874-71cae243cee4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -416,42 +416,45 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:44:34 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1f58bfd9-0484-499c-b5b3-807faf96508f?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/e719e4cf-a462-46f9-afc0-b5e022fd5311?api-version=2019-12-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "1f58bfd9-0484-499c-b5b3-807faf96508f"
+ "e719e4cf-a462-46f9-afc0-b5e022fd5311"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-correlation-request-id": [
- "52a13cd1-a754-4c29-817a-ac9c09872a79"
+ "8a84a317-4efc-4944-a588-9acffde32592"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014434Z:52a13cd1-a754-4c29-817a-ac9c09872a79"
+ "WESTCENTRALUS:20210113T220402Z:8a84a317-4efc-4944-a588-9acffde32592"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:04:02 GMT"
+ ],
"Content-Length": [
- "510"
+ "514"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -460,57 +463,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery592\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY592\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5621\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5621\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/1f58bfd9-0484-499c-b5b3-807faf96508f?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8xZjU4YmZkOS0wNDg0LTQ5OWMtYjViMy04MDdmYWY5NjUwOGY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/e719e4cf-a462-46f9-afc0-b5e022fd5311?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9lNzE5ZTRjZi1hNDYyLTQ2ZjktYWZjMC1iNWUwMjJmZDUzMTE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:45:04 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1180,Microsoft.Compute/GetOperationStatus30Min;4071"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "7e591ab6-81ba-4ca1-8e12-3da5dcd90bbb"
+ "22c14656-bbd1-4b7b-84b3-e9ccd6e5a828"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
"x-ms-correlation-request-id": [
- "e92e6a2e-6ede-4929-b36c-0432e8b6d7bd"
+ "0c5b7247-517a-4b12-b236-191dbc19b8c5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014505Z:e92e6a2e-6ede-4929-b36c-0432e8b6d7bd"
+ "WESTCENTRALUS:20210113T220432Z:0c5b7247-517a-4b12-b236-191dbc19b8c5"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:04:32 GMT"
+ ],
"Content-Length": [
"184"
],
@@ -521,59 +527,62 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:44:32.9572378-08:00\",\r\n \"endTime\": \"2020-02-20T17:44:33.8322125-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1f58bfd9-0484-499c-b5b3-807faf96508f\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:04:00.3088269-08:00\",\r\n \"endTime\": \"2021-01-13T14:04:01.3244353-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"e719e4cf-a462-46f9-afc0-b5e022fd5311\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:45:05 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "7ddea389-1d4e-4f5f-bfdf-8a30bdb58ba7"
+ "77109c1e-15d3-4112-bde4-8f58bf767c35"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
"x-ms-correlation-request-id": [
- "b2704d8b-1c32-45f9-bac0-586618f8c9c1"
+ "6af02fe2-f74a-4856-8020-4cf109560db5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014505Z:b2704d8b-1c32-45f9-bac0-586618f8c9c1"
+ "WESTCENTRALUS:20210113T220433Z:6af02fe2-f74a-4856-8020-4cf109560db5"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:04:32 GMT"
+ ],
"Content-Length": [
- "511"
+ "515"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -582,26 +591,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery592\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY592\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGallery5621\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621\",\r\n \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"description\": \"This is a sample gallery description\",\r\n \"identifier\": {\r\n \"uniqueName\": \"97f78232-382b-46a7-8a72-964d692c4f3f-GALLERYPSTESTGALLERY5621\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"properties\": {\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\",\r\n \"supportedOSType\": \"Windows\"\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "12a57118-2738-4035-8404-a2cf9aa0331b"
+ "d077400d-a23f-42f1-864a-c4c4d17662b9"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -614,39 +623,42 @@
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:45:05 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "71393f54-e206-45ee-893f-27593dea3f32"
+ "0416a7a0-6688-422a-804f-560c1349ba5d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1196"
+ "1198"
],
"x-ms-correlation-request-id": [
- "59940480-8366-44b7-a31a-2f1d2a043813"
+ "e7095203-596c-4282-ab02-a98a5907abcb"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014505Z:59940480-8366-44b7-a31a-2f1d2a043813"
+ "WESTCENTRALUS:20210113T220433Z:e7095203-596c-4282-ab02-a98a5907abcb"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:04:33 GMT"
+ ],
"Content-Length": [
- "632"
+ "634"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -655,59 +667,62 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication4505\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2042\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:45:35 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "0d91ad30-81e4-48ea-a383-a86f99cfe323"
+ "393b591a-cae8-49c4-99b4-d2ebf19157b7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11997"
],
"x-ms-correlation-request-id": [
- "863b16b8-c99c-4b88-9d59-8ff73064552c"
+ "407be850-6464-41df-b2bf-158f43861b36"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014536Z:863b16b8-c99c-4b88-9d59-8ff73064552c"
+ "WESTCENTRALUS:20210113T220503Z:407be850-6464-41df-b2bf-158f43861b36"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:05:03 GMT"
+ ],
"Content-Length": [
- "632"
+ "634"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -716,74 +731,77 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication4505\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"galleryPsTestGalleryApplication2042\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042\",\r\n \"type\": \"Microsoft.Compute/galleries/applications\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"supportedOSType\": \"Windows\",\r\n \"description\": \"This is the gallery application description.\",\r\n \"eula\": \"This is the gallery application EULA.\",\r\n \"privacyStatementUri\": \"www.privacystatement.com\",\r\n \"releaseNoteUri\": \"www.releasenote.com\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-03-01T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-01-23T08:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1de3f51f-1650-4376-9d68-98d0572f1f76"
+ "1e9c628e-a4dd-46a1-972a-a56aa3986df3"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "680"
+ "828"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:45:36 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;749"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "39b22df0-9c3c-4be8-9d50-d0e3ed29feae"
+ "08223b74-f445-411b-9da4-6ed46dd3fb90"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1195"
+ "1197"
],
"x-ms-correlation-request-id": [
- "4d1056fd-639a-41ad-a02c-173d3660acbb"
+ "b0059017-460f-4313-865b-de5bb6b13482"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014536Z:4d1056fd-639a-41ad-a02c-173d3660acbb"
+ "WESTCENTRALUS:20210113T220504Z:b0059017-460f-4313-865b-de5bb6b13482"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:05:03 GMT"
+ ],
"Content-Length": [
- "1163"
+ "1313"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -792,74 +810,77 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-01-23T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2020-05-30T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"SoutheastAsia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"endOfLifeDate\": \"2021-04-23T07:00:00Z\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c25e23fe-912c-443d-a5bb-82391aa0ea58"
+ "3eb05fd1-6cc8-4c04-b893-068db274cddc"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
"Content-Length": [
- "680"
+ "828"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:50:11 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/CreateUpdateGalleryApplicationVersion3Min;149,Microsoft.Compute/CreateUpdateGalleryApplicationVersion30Min;748"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "01072ea5-4243-4f5a-bb8b-537afc9ec2d0"
+ "a882d565-5130-456a-b579-0358bddc3c62"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1194"
+ "1196"
],
"x-ms-correlation-request-id": [
- "1e00c68a-ad4e-47b7-9611-76ee86fe9f27"
+ "f16d04f4-37ad-46aa-8240-b358ba4daa32"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015012Z:1e00c68a-ad4e-47b7-9611-76ee86fe9f27"
+ "WESTCENTRALUS:20210113T220938Z:f16d04f4-37ad-46aa-8240-b358ba4daa32"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:09:38 GMT"
+ ],
"Content-Length": [
- "1163"
+ "1313"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -868,57 +889,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-04-23T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:46:07 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1182,Microsoft.Compute/GetOperationStatus30Min;4088"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "9140e43b-77fc-4d11-9f74-ef07743d36af"
+ "b7df7e79-318b-4250-9b97-81fafb51864d"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11996"
],
"x-ms-correlation-request-id": [
- "d409afab-ac63-42a9-a6f4-1a4b42193889"
+ "ec168560-8bfd-40d2-b9b1-53ab2348adb1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014607Z:d409afab-ac63-42a9-a6f4-1a4b42193889"
+ "WESTCENTRALUS:20210113T220534Z:ec168560-8bfd-40d2-b9b1-53ab2348adb1"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:05:34 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -929,57 +953,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:46:37 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;4082"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "e8006c8d-50fa-4981-9b27-e1753dabe08d"
+ "e014f554-0670-41a8-8efa-f786f5f69313"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11995"
],
"x-ms-correlation-request-id": [
- "bc0efee8-4539-4d0f-bc9e-9b3b8e445b97"
+ "bb30888d-7e52-4c86-89fe-65127ff0e7f5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014637Z:bc0efee8-4539-4d0f-bc9e-9b3b8e445b97"
+ "WESTCENTRALUS:20210113T220605Z:bb30888d-7e52-4c86-89fe-65127ff0e7f5"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:06:04 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -990,57 +1017,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:47:07 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1177,Microsoft.Compute/GetOperationStatus30Min;4076"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "567a6b48-ae7e-487b-84e7-069949330f99"
+ "9a78900b-5a33-4c73-8923-62771197e2f7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11994"
],
"x-ms-correlation-request-id": [
- "5eb1c35e-a369-44b0-a514-4659a9e01854"
+ "4f80dcb0-3eaa-43cf-83de-d1098a18fd3d"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014708Z:5eb1c35e-a369-44b0-a514-4659a9e01854"
+ "WESTCENTRALUS:20210113T220635Z:4f80dcb0-3eaa-43cf-83de-d1098a18fd3d"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:06:34 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1051,57 +1081,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:47:38 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1175,Microsoft.Compute/GetOperationStatus30Min;4069"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "7d2b35ed-d32c-4adf-8ab6-88f4a9d437dd"
+ "85949ebb-7fef-43c7-b95b-88be97da5d9b"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11993"
],
"x-ms-correlation-request-id": [
- "cbffb0d7-90f2-4d3a-aad7-5f03e10191dd"
+ "77a8f6aa-ec8a-4303-9a97-54663b9c008c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014738Z:cbffb0d7-90f2-4d3a-aad7-5f03e10191dd"
+ "WESTCENTRALUS:20210113T220705Z:77a8f6aa-ec8a-4303-9a97-54663b9c008c"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:07:05 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1112,57 +1145,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:48:07 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1176,Microsoft.Compute/GetOperationStatus30Min;4067"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "9d3525e4-e2af-4533-b9b9-decdad9e261e"
+ "aa39803a-ce68-4d94-b808-e94eff433480"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11992"
],
"x-ms-correlation-request-id": [
- "f69e235f-6ded-40bb-b8d6-2b28dcd4eb83"
+ "472daab0-16bb-4056-b586-9b0556f66583"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014808Z:f69e235f-6ded-40bb-b8d6-2b28dcd4eb83"
+ "WESTCENTRALUS:20210113T220735Z:472daab0-16bb-4056-b586-9b0556f66583"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:07:35 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1173,57 +1209,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:48:39 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1171,Microsoft.Compute/GetOperationStatus30Min;4060"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "2f3201d4-b40b-429e-9a91-1c25821d5701"
+ "2ec6f012-2efd-47d4-810d-9fd1c7061cc1"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11991"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
"x-ms-correlation-request-id": [
- "90efbb37-19d1-44ae-ab1e-35f08b3a4340"
+ "4da3289c-62ab-445f-a4f3-e85ae85ffcb1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014839Z:90efbb37-19d1-44ae-ab1e-35f08b3a4340"
+ "WESTCENTRALUS:20210113T220806Z:4da3289c-62ab-445f-a4f3-e85ae85ffcb1"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:08:05 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1234,57 +1273,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:49:09 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4054"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "a5537984-01ef-4c64-b8b6-ef0653630de7"
+ "c5cef29d-14a2-4c81-bce4-085d5ff9a9a3"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11990"
],
"x-ms-correlation-request-id": [
- "ce15f078-7dde-4a71-8158-c1804bfad87b"
+ "766005b8-6c87-453f-be5c-703c8fcb51a6"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014909Z:ce15f078-7dde-4a71-8158-c1804bfad87b"
+ "WESTCENTRALUS:20210113T220836Z:766005b8-6c87-453f-be5c-703c8fcb51a6"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:08:36 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1295,57 +1337,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:49:38 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1170,Microsoft.Compute/GetOperationStatus30Min;4048"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "8de471c2-d178-4a11-a077-798d68841d97"
+ "0fb16581-988c-4039-9f0c-2ddbd9ad6a78"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11989"
],
"x-ms-correlation-request-id": [
- "48705605-6441-4795-9840-cab3b156a52f"
+ "63422a61-c3b6-415d-96d8-b1f2e35f8b51"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T014939Z:48705605-6441-4795-9840-cab3b156a52f"
+ "WESTCENTRALUS:20210113T220907Z:63422a61-c3b6-415d-96d8-b1f2e35f8b51"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:09:06 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1356,57 +1401,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/39b22df0-9c3c-4be8-9d50-d0e3ed29feae?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8zOWIyMmRmMC05YzNjLTRiZTgtOWQ1MC1kMGUzZWQyOWZlYWU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/08223b74-f445-411b-9da4-6ed46dd3fb90?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODIyM2I3NC1mNDQ1LTQxMWItOWRhNC02ZWQ0NmRkM2ZiOTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:50:09 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1169,Microsoft.Compute/GetOperationStatus30Min;4041"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "5cb88f34-bd7c-48bf-93f1-ebada28a71d5"
+ "7a460b63-8b64-47cc-b239-4eb71f7585e0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11988"
],
"x-ms-correlation-request-id": [
- "2c7106a0-a60c-4e0f-9477-8cbaec2721b9"
+ "089cca3a-4200-40b4-9263-866fb8908568"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015010Z:2c7106a0-a60c-4e0f-9477-8cbaec2721b9"
+ "WESTCENTRALUS:20210113T220937Z:089cca3a-4200-40b4-9263-866fb8908568"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:09:37 GMT"
+ ],
"Content-Length": [
"184"
],
@@ -1417,59 +1465,62 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:45:36.4724359-08:00\",\r\n \"endTime\": \"2020-02-20T17:50:06.7830878-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"39b22df0-9c3c-4be8-9d50-d0e3ed29feae\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:05:04.1836665-08:00\",\r\n \"endTime\": \"2021-01-13T14:09:34.5576672-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"08223b74-f445-411b-9da4-6ed46dd3fb90\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:50:10 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "62107b1d-091c-4dc2-a60c-7cec226c32ab"
+ "4868a0d7-f4d3-4059-bb99-63e6757a8bfa"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11987"
],
"x-ms-correlation-request-id": [
- "98b53895-e23a-472e-ae1d-cbea2ba85fca"
+ "266bd3eb-6a3c-4579-8b33-818c73f08d66"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015011Z:98b53895-e23a-472e-ae1d-cbea2ba85fca"
+ "WESTCENTRALUS:20210113T220937Z:266bd3eb-6a3c-4579-8b33-818c73f08d66"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:09:37 GMT"
+ ],
"Content-Length": [
- "1164"
+ "1314"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1478,65 +1529,68 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-01-23T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "078c0b58-6d29-49cc-91ca-02262382de7d"
+ "68b150fd-f61b-4961-abe6-02639fc080f4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:50:10 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1997,Microsoft.Compute/GetGalleryApplicationVersion30Min;9997"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "81f94175-5cc8-4c3e-a1ff-f882aca919f9"
+ "910cdb89-4a2f-430f-8461-c447af554331"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11986"
],
"x-ms-correlation-request-id": [
- "b807e508-f674-4386-b3d0-dcae5cf8c93d"
+ "147c2009-6c2f-4827-9e4c-32a1b2fcc791"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015011Z:b807e508-f674-4386-b3d0-dcae5cf8c93d"
+ "WESTCENTRALUS:20210113T220937Z:147c2009-6c2f-4827-9e4c-32a1b2fcc791"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:09:37 GMT"
+ ],
"Content-Length": [
- "1164"
+ "1314"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1545,59 +1599,62 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-01-23T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:52:43 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1999,Microsoft.Compute/GetGalleryApplicationVersion30Min;9995"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "a7c2d57b-461f-4f93-b1d3-ee5ce3770788"
+ "6df95067-ff99-4341-8d61-e9d5887bef9f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11978"
],
"x-ms-correlation-request-id": [
- "2296b284-218b-4330-877c-d9acadc1b9f1"
+ "0d7e13fb-3591-4c6a-ae22-70cb7f8e88af"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015244Z:2296b284-218b-4330-877c-d9acadc1b9f1"
+ "WESTCENTRALUS:20210113T221241Z:0d7e13fb-3591-4c6a-ae22-70cb7f8e88af"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:12:40 GMT"
+ ],
"Content-Length": [
- "1164"
+ "1314"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1606,65 +1663,68 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-04-23T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ce807fd7-4873-4f7c-b48c-fe26d9ccc1c9"
+ "5ecefe3d-4013-426f-968b-da77d7ce17a4"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:52:43 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1998,Microsoft.Compute/GetGalleryApplicationVersion30Min;9994"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "599804c6-fc22-4867-a0a0-00380d66074d"
+ "b36cfd50-21c7-4ae7-9fd6-deea7d16d67e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
+ "11977"
],
"x-ms-correlation-request-id": [
- "c88fa336-8899-4f47-88dd-829617ed440e"
+ "0758417d-3c1d-4169-b91a-04271e0643ac"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015244Z:c88fa336-8899-4f47-88dd-829617ed440e"
+ "WESTCENTRALUS:20210113T221241Z:0758417d-3c1d-4169-b91a-04271e0643ac"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:12:40 GMT"
+ ],
"Content-Length": [
- "1164"
+ "1314"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1673,65 +1733,68 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-05-30T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-04-23T00:00:00-07:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD8kZXhwYW5kPVJlcGxpY2F0aW9uU3RhdHVzJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?$expand=ReplicationStatus&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wPyRleHBhbmQ9UmVwbGljYXRpb25TdGF0dXMmYXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d27c488d-1154-41a6-9ca4-32eb518639a4"
+ "acf521f8-734f-4e45-a9b5-11543768d7ef"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:50:11 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetGalleryApplicationVersion3Min;1996,Microsoft.Compute/GetGalleryApplicationVersion30Min;9996"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "7c3fe430-6d77-4d91-a98d-2a72579bb944"
+ "6177baf2-bb35-4af0-a7a1-54b482f0709e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11985"
],
"x-ms-correlation-request-id": [
- "5ac362a7-1ac8-46fc-9bf5-832f1d1ff218"
+ "3f161424-5887-48cd-b419-d84a0555c8f9"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015011Z:5ac362a7-1ac8-46fc-9bf5-832f1d1ff218"
+ "WESTCENTRALUS:20210113T220938Z:3f161424-5887-48cd-b419-d84a0555c8f9"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:09:38 GMT"
+ ],
"Content-Length": [
- "1388"
+ "1538"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1740,57 +1803,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"fileName\": \"test.zip\",\r\n \"mediaLink\": \"https://saforgallery6204.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=QxJqBvH83oqFZHN9OoZnG6LIh3OLNHTANam7o03jCvI%3D&st=2020-02-20T01%3A44%3A26Z&se=2020-02-23T01%3A44%3A26Z&sp=rw\"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2020-02-20T17:45:36.5193004-08:00\",\r\n \"endOfLifeDate\": \"2020-03-01T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0\",\r\n \"type\": \"Microsoft.Compute/galleries/applications/versions\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"source\": {\r\n \"mediaLink\": \"https://saforgallery663.blob.core.windows.net/sascontainer/test.txt?sv=2017-04-17&sr=b&sig=eWoBXHYRLdkpfDt44tQCIz6z9WFtgxZFgd%2BlDnjuvnw%3D&st=2021-01-12T22%3A03%3A53Z&se=2021-01-15T22%3A03%3A53Z&sp=rw\"\r\n },\r\n \"manageActions\": {\r\n \"install\": \"powershell -command \\\"Expand-Archive -Path test.zip -DestinationPath C:\\\\package\\\"\",\r\n \"remove\": \"del C:\\\\package \"\r\n },\r\n \"enableHealthCheck\": false,\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"Southeast Asia\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-13T14:05:04.2461755-08:00\",\r\n \"endOfLifeDate\": \"2021-01-23T00:00:00-08:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"replicationStatus\": {\r\n \"aggregatedState\": \"Completed\",\r\n \"summary\": [\r\n {\r\n \"region\": \"southeastasia\",\r\n \"state\": \"Completed\",\r\n \"progress\": 100\r\n }\r\n ]\r\n }\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hODgyZDU2NS01MTMwLTQ1NmEtYjU3OS0wMzU4YmRkYzNjNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:50:41 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4050"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "f1e14225-e8b4-46e0-818a-3569359ef812"
+ "538735ca-03cd-4d21-97ec-5fee3a1f3c26"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11984"
],
"x-ms-correlation-request-id": [
- "59a9aa74-96c4-4b42-8cee-1e5eb712158a"
+ "ed83f13a-5f87-439b-8244-ecff0951da31"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015042Z:59a9aa74-96c4-4b42-8cee-1e5eb712158a"
+ "WESTCENTRALUS:20210113T221008Z:ed83f13a-5f87-439b-8244-ecff0951da31"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:10:08 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1801,57 +1867,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:09:38.4326628-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a882d565-5130-456a-b579-0358bddc3c62\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hODgyZDU2NS01MTMwLTQ1NmEtYjU3OS0wMzU4YmRkYzNjNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:51:12 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4042"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "92761fce-1eea-419e-84ab-267eae5469bb"
+ "fb087bc7-185e-4798-8093-f7eb0a181373"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11983"
],
"x-ms-correlation-request-id": [
- "2bedb08a-9eb2-46fc-b148-824b8efae4a8"
+ "6c507d5e-b3d8-41fd-a667-8fd0b6aff083"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015112Z:2bedb08a-9eb2-46fc-b148-824b8efae4a8"
+ "WESTCENTRALUS:20210113T221039Z:6c507d5e-b3d8-41fd-a667-8fd0b6aff083"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:10:38 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1862,57 +1931,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:09:38.4326628-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a882d565-5130-456a-b579-0358bddc3c62\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hODgyZDU2NS01MTMwLTQ1NmEtYjU3OS0wMzU4YmRkYzNjNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:51:42 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4037"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "cfba5ed1-03d8-4f0c-95df-32767dc9aa43"
+ "d072b796-16e8-44be-bc04-dd69c359d012"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11982"
],
"x-ms-correlation-request-id": [
- "e54776f0-3bcf-42d7-86a4-12a81cd56308"
+ "b79bd659-4ac7-4d6a-9d27-f2d9093577a1"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015142Z:e54776f0-3bcf-42d7-86a4-12a81cd56308"
+ "WESTCENTRALUS:20210113T221109Z:b79bd659-4ac7-4d6a-9d27-f2d9093577a1"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:11:08 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1923,57 +1995,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:09:38.4326628-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a882d565-5130-456a-b579-0358bddc3c62\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hODgyZDU2NS01MTMwLTQ1NmEtYjU3OS0wMzU4YmRkYzNjNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:52:13 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4033"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "b23341ab-8e15-4073-8456-70f9bd0b03b5"
+ "756cdfdc-8d97-4a57-a37a-1a9fc592bdc0"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11981"
],
"x-ms-correlation-request-id": [
- "176793ab-e8f9-4cff-8677-8e7f7fe8d5d6"
+ "7305a85d-d3f0-438e-998a-5ca97041416c"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015213Z:176793ab-e8f9-4cff-8677-8e7f7fe8d5d6"
+ "WESTCENTRALUS:20210113T221139Z:7305a85d-d3f0-438e-998a-5ca97041416c"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:11:38 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -1984,57 +2059,124 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:09:38.4326628-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a882d565-5130-456a-b579-0358bddc3c62\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/01072ea5-4243-4f5a-bb8b-537afc9ec2d0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wMTA3MmVhNS00MjQzLTRmNWEtYmI4Yi01MzdhZmM5ZWMyZDA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hODgyZDU2NS01MTMwLTQ1NmEtYjU3OS0wMzU4YmRkYzNjNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:52:43 GMT"
- ],
"Pragma": [
"no-cache"
],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1167,Microsoft.Compute/GetOperationStatus30Min;4024"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
+ ],
+ "x-ms-request-id": [
+ "a119d320-ee34-4e95-b661-714092011266"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "422ea233-e26c-466c-a8a6-41224d645759"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTCENTRALUS:20210113T221209Z:422ea233-e26c-466c-a8a6-41224d645759"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Wed, 13 Jan 2021 22:12:09 GMT"
+ ],
+ "Content-Length": [
+ "134"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:09:38.4326628-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a882d565-5130-456a-b579-0358bddc3c62\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/a882d565-5130-456a-b579-0358bddc3c62?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy9hODgyZDU2NS01MTMwLTQ1NmEtYjU3OS0wMzU4YmRkYzNjNjI/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.29518.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1163,Microsoft.Compute/GetOperationStatus30Min;4015"
+ ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "8e8128f8-ce84-4fa3-947c-3713db8c27b6"
+ "322828c7-238c-4d9f-9ae3-4426562605ef"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11979"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-correlation-request-id": [
- "825e16d4-3c03-4a7d-9e39-76df4c3224e7"
+ "ef602548-eeee-4879-9ffb-68b15db1559b"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015243Z:825e16d4-3c03-4a7d-9e39-76df4c3224e7"
+ "WESTCENTRALUS:20210113T221240Z:ef602548-eeee-4879-9ffb-68b15db1559b"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:12:39 GMT"
+ ],
"Content-Length": [
"184"
],
@@ -2045,127 +2187,133 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:50:11.7674384-08:00\",\r\n \"endTime\": \"2020-02-20T17:52:26.8910558-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"01072ea5-4243-4f5a-bb8b-537afc9ec2d0\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:09:38.4326628-08:00\",\r\n \"endTime\": \"2021-01-13T14:12:38.6200666-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a882d565-5130-456a-b579-0358bddc3c62\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505/versions/1.0.0?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042/versions/1.0.0?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyL3ZlcnNpb25zLzEuMC4wP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e8765dd1-d326-40a8-9409-977461f80a7f"
+ "01215dcd-d9a3-41e9-ac54-c462ca32e698"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:52:44 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?monitor=true&api-version=2019-12-01"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/7ab243d7-6f8f-41b8-8eda-3c101e1c21b7?monitor=true&api-version=2019-12-01"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/7ab243d7-6f8f-41b8-8eda-3c101e1c21b7?api-version=2019-12-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/DeleteGalleryApplicationVersion3Min;149,Microsoft.Compute/DeleteGalleryApplicationVersion30Min;999"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "4564a0e2-fde0-4b58-ac5f-a725c4da5d66"
+ "7ab243d7-6f8f-41b8-8eda-3c101e1c21b7"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
"x-ms-correlation-request-id": [
- "e685de63-c46b-4bdc-a90c-68f3d08bc9d3"
+ "9be89c0c-5265-4e3c-9187-8038ddb9d0b5"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015244Z:e685de63-c46b-4bdc-a90c-68f3d08bc9d3"
+ "WESTCENTRALUS:20210113T221241Z:9be89c0c-5265-4e3c-9187-8038ddb9d0b5"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Wed, 13 Jan 2021 22:12:40 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/7ab243d7-6f8f-41b8-8eda-3c101e1c21b7?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83YWIyNDNkNy02ZjhmLTQxYjgtOGVkYS0zYzEwMWUxYzIxYjc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:53:14 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4012"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "5e8fd632-0875-4146-9354-ea383d81006a"
+ "186c2254-a12d-46ea-8f52-b1a074058a2f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
+ "11976"
],
"x-ms-correlation-request-id": [
- "74d0cdf9-5b13-4f82-bd7f-458cfc847932"
+ "e8893588-8bd3-4701-b7bc-407cd12c9425"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015315Z:74d0cdf9-5b13-4f82-bd7f-458cfc847932"
+ "WESTCENTRALUS:20210113T221311Z:e8893588-8bd3-4701-b7bc-407cd12c9425"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:13:11 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -2176,57 +2324,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:12:41.4169534-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7ab243d7-6f8f-41b8-8eda-3c101e1c21b7\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/7ab243d7-6f8f-41b8-8eda-3c101e1c21b7?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83YWIyNDNkNy02ZjhmLTQxYjgtOGVkYS0zYzEwMWUxYzIxYjc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:53:45 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;4007"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "1b76331c-19e2-4c32-b2b6-2b76c8580633"
+ "60d07de1-cc10-4042-81c2-ac645a40d17e"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
+ "11975"
],
"x-ms-correlation-request-id": [
- "88a56214-def1-4a38-8cbf-9ee3694a8c53"
+ "15a019db-007f-4c15-8f12-f13b52072922"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015345Z:88a56214-def1-4a38-8cbf-9ee3694a8c53"
+ "WESTCENTRALUS:20210113T221342Z:15a019db-007f-4c15-8f12-f13b52072922"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:13:41 GMT"
+ ],
"Content-Length": [
"134"
],
@@ -2237,57 +2388,60 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:12:41.4169534-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7ab243d7-6f8f-41b8-8eda-3c101e1c21b7\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/7ab243d7-6f8f-41b8-8eda-3c101e1c21b7?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83YWIyNDNkNy02ZjhmLTQxYjgtOGVkYS0zYzEwMWUxYzIxYjc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:54:15 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1164,Microsoft.Compute/GetOperationStatus30Min;3999"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "27ed5b44-4b4f-4f7f-9278-5ea3a1337049"
+ "beb4a182-fcd8-47de-beac-3cbb94b7f198"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
+ "11974"
],
"x-ms-correlation-request-id": [
- "d52cd7db-be5a-4c29-85ab-b96accef2a60"
+ "0c9680ec-eb3d-4f18-812e-f550f68620ed"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015416Z:d52cd7db-be5a-4c29-85ab-b96accef2a60"
+ "WESTCENTRALUS:20210113T221412Z:0c9680ec-eb3d-4f18-812e-f550f68620ed"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:14:11 GMT"
+ ],
"Content-Length": [
"184"
],
@@ -2298,249 +2452,261 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:52:44.4846028-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:14.7023209-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4564a0e2-fde0-4b58-ac5f-a725c4da5d66\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:12:41.4169534-08:00\",\r\n \"endTime\": \"2021-01-13T14:14:11.6824769-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7ab243d7-6f8f-41b8-8eda-3c101e1c21b7\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/4564a0e2-fde0-4b58-ac5f-a725c4da5d66?monitor=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy80NTY0YTBlMi1mZGUwLTRiNTgtYWM1Zi1hNzI1YzRkYTVkNjY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/7ab243d7-6f8f-41b8-8eda-3c101e1c21b7?monitor=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy83YWIyNDNkNy02ZjhmLTQxYjgtOGVkYS0zYzEwMWUxYzIxYjc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:54:15 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1163,Microsoft.Compute/GetOperationStatus30Min;3998"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "0801fa84-796d-492f-8e94-faf9a9644143"
+ "2c436a96-cab2-44cc-9b6b-a1679ca2fc19"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
+ "11973"
],
"x-ms-correlation-request-id": [
- "31de8dc2-8650-434b-ae03-12b4634f34ac"
+ "7fa38131-833a-4fe2-ae0c-517a231eb7a8"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015416Z:31de8dc2-8650-434b-ae03-12b4634f34ac"
+ "WESTCENTRALUS:20210113T221412Z:7fa38131-833a-4fe2-ae0c-517a231eb7a8"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Wed, 13 Jan 2021 22:14:11 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592/applications/galleryPsTestGalleryApplication4505?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyL2FwcGxpY2F0aW9ucy9nYWxsZXJ5UHNUZXN0R2FsbGVyeUFwcGxpY2F0aW9uNDUwNT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621/applications/galleryPsTestGalleryApplication2042?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjEvYXBwbGljYXRpb25zL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5QXBwbGljYXRpb24yMDQyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "a049d923-ca79-42b2-98df-d6341d34c962"
+ "52cd0dbf-ddf4-42ea-ae4d-8195f3be3c37"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:54:15 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;299"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "9e907064-3448-498b-982c-47d14800e4a6"
+ "c1e92fdd-620d-445d-a6d2-e9ad1777c29f"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14997"
+ "14998"
],
"x-ms-correlation-request-id": [
- "137fb1ac-b09f-4405-a9ef-ab7d51b24d81"
+ "8e04bc21-7c27-4ace-979a-46af27b644a2"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015416Z:137fb1ac-b09f-4405-a9ef-ab7d51b24d81"
+ "WESTCENTRALUS:20210113T221412Z:8e04bc21-7c27-4ace-979a-46af27b644a2"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Wed, 13 Jan 2021 22:14:12 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg552/providers/Microsoft.Compute/galleries/galleryPsTestGallery592?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzU1Mi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZ2FsbGVyaWVzL2dhbGxlcnlQc1Rlc3RHYWxsZXJ5NTkyP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/resourceGroups/galleryPsTestRg7349/providers/Microsoft.Compute/galleries/galleryPsTestGallery5621?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Jlc291cmNlR3JvdXBzL2dhbGxlcnlQc1Rlc3RSZzczNDkvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2dhbGxlcmllcy9nYWxsZXJ5UHNUZXN0R2FsbGVyeTU2MjE/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "838e80f0-5436-4c84-9414-61df05010ee5"
+ "cd5895d2-8e9d-4d5f-a1d5-c461e07759e0"
],
- "accept-language": [
+ "Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:54:17 GMT"
- ],
"Pragma": [
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?monitor=true&api-version=2019-12-01"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/22232f2d-ec26-48ab-866f-0eba85bcb9e5?monitor=true&api-version=2019-12-01"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?api-version=2019-12-01"
+ "https://management.azure.com/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/22232f2d-ec26-48ab-866f-0eba85bcb9e5?api-version=2019-12-01"
+ ],
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/DeleteGallery3Min;2,Microsoft.Compute/DeleteGallery30Min;455"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "082590a0-1611-4a32-b0ff-e9c90cee25bc"
+ "22232f2d-ec26-48ab-866f-0eba85bcb9e5"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14996"
+ "14997"
],
"x-ms-correlation-request-id": [
- "06b55df8-5b42-4640-8adc-ede024b668c1"
+ "f569f231-75fc-4371-92a2-24b9b35597d0"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015418Z:06b55df8-5b42-4640-8adc-ede024b668c1"
+ "WESTCENTRALUS:20210113T221414Z:f569f231-75fc-4371-92a2-24b9b35597d0"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Wed, 13 Jan 2021 22:14:13 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODI1OTBhMC0xNjExLTRhMzItYjBmZi1lOWM5MGNlZTI1YmM/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/22232f2d-ec26-48ab-866f-0eba85bcb9e5?api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8yMjIzMmYyZC1lYzI2LTQ4YWItODY2Zi0wZWJhODViY2I5ZTU/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:54:48 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1169,Microsoft.Compute/GetOperationStatus30Min;3995"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "e7a2dbeb-5a89-429b-b537-bfa69cbf3519"
+ "79a008c6-1a82-4e33-87c7-c76e0581a308"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
+ "11972"
],
"x-ms-correlation-request-id": [
- "d37f3702-f720-46d4-b9a0-39055f8d26a1"
+ "b4d88e2a-25ba-4c8c-bc89-06bbd8998c85"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015448Z:d37f3702-f720-46d4-b9a0-39055f8d26a1"
+ "WESTCENTRALUS:20210113T221444Z:b4d88e2a-25ba-4c8c-bc89-06bbd8998c85"
],
"X-Content-Type-Options": [
"nosniff"
],
+ "Date": [
+ "Wed, 13 Jan 2021 22:14:43 GMT"
+ ],
"Content-Length": [
"183"
],
@@ -2551,62 +2717,65 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"startTime\": \"2020-02-20T17:54:17.874164-08:00\",\r\n \"endTime\": \"2020-02-20T17:54:18.8116546-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"082590a0-1611-4a32-b0ff-e9c90cee25bc\"\r\n}",
+ "ResponseBody": "{\r\n \"startTime\": \"2021-01-13T14:14:14.0731305-08:00\",\r\n \"endTime\": \"2021-01-13T14:14:15.010591-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"22232f2d-ec26-48ab-866f-0eba85bcb9e5\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/082590a0-1611-4a32-b0ff-e9c90cee25bc?monitor=true&api-version=2019-12-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8wODI1OTBhMC0xNjExLTRhMzItYjBmZi1lOWM5MGNlZTI1YmM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
+ "RequestUri": "/subscriptions/97f78232-382b-46a7-8a72-964d692c4f3f/providers/Microsoft.Compute/locations/southeastasia/capsOperations/22232f2d-ec26-48ab-866f-0eba85bcb9e5?monitor=true&api-version=2019-12-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOTdmNzgyMzItMzgyYi00NmE3LThhNzItOTY0ZDY5MmM0ZjNmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9jYXBzT3BlcmF0aW9ucy8yMjIzMmYyZC1lYzI2LTQ4YWItODY2Zi0wZWJhODViY2I5ZTU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMTItMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26614.01",
+ "FxVersion/4.6.29518.01",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.1.0.0"
+ "OSVersion/Microsoft.Windows.10.0.19042.",
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/42.0.0.0"
]
},
"ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
- "Date": [
- "Fri, 21 Feb 2020 01:54:48 GMT"
- ],
"Pragma": [
"no-cache"
],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
+ "x-ms-ratelimit-remaining-resource": [
+ "Microsoft.Compute/GetOperationStatus3Min;1168,Microsoft.Compute/GetOperationStatus30Min;3994"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"x-ms-served-by": [
- "060de95e-c116-496e-9451-1806a389aa56_132226950234321885,060de95e-c116-496e-9451-1806a389aa56_132226950234321885"
+ "060de95e-c116-496e-9451-1806a389aa56_132524702196610739,060de95e-c116-496e-9451-1806a389aa56_132524702196610739"
],
"x-ms-request-id": [
- "ceee266a-bea3-470c-b387-9000af05b7f0"
+ "001a2cfc-8cc2-41cd-b9d5-84f3ea008677"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
+ "11971"
],
"x-ms-correlation-request-id": [
- "dd06834a-8af1-45cb-9b50-79eb4b72519c"
+ "3b1a20b1-6dcb-4805-bd21-d2677bb2fe31"
],
"x-ms-routing-request-id": [
- "WESTUS:20200221T015448Z:dd06834a-8af1-45cb-9b50-79eb4b72519c"
+ "WESTCENTRALUS:20210113T221444Z:3b1a20b1-6dcb-4805-bd21-d2677bb2fe31"
],
"X-Content-Type-Options": [
"nosniff"
],
- "Content-Length": [
- "0"
+ "Date": [
+ "Wed, 13 Jan 2021 22:14:43 GMT"
],
"Expires": [
"-1"
+ ],
+ "Content-Length": [
+ "0"
]
},
"ResponseBody": "",
@@ -2615,14 +2784,14 @@
],
"Names": {
"GalleryApplicationVersion_CRUD_Tests": [
- "galleryPsTestRg552",
- "psTestSourceApplication2573",
- "galleryPsTestGallery592",
- "galleryPsTestGalleryApplication4505"
+ "galleryPsTestRg7349",
+ "psTestSourceApplication1537",
+ "galleryPsTestGallery5621",
+ "galleryPsTestGalleryApplication2042"
],
"CreateApplicationMediaLink": [
- "saforgallery6204",
- "asforgallery2013"
+ "saforgallery663",
+ "asforgallery8788"
]
},
"Variables": {