diff --git a/Tests/Fluent.Tests/ContainerInstance/ContainerInstanceTest.cs b/Tests/Fluent.Tests/ContainerInstance/ContainerInstanceTest.cs index 51ede7007..bfde63b05 100644 --- a/Tests/Fluent.Tests/ContainerInstance/ContainerInstanceTest.cs +++ b/Tests/Fluent.Tests/ContainerInstance/ContainerInstanceTest.cs @@ -384,5 +384,212 @@ public void ContainerInstanceWithPrivateIpAddress() } } + + [Fact] + public void ContainerInstanceMSIUpdate() + { + using (var context = FluentMockContext.Start(GetType().FullName)) + { + var rgName = TestUtilities.GenerateName("rgaci"); + var cgName = TestUtilities.GenerateName("aci"); + var msiManager = TestHelper.CreateMsiManager(); + var containerInstanceManager = TestHelper.CreateContainerInstanceManager(); + var resourceManager = TestHelper.CreateResourceManager(); + string identityName1 = TestUtilities.GenerateName("msi-id"); + string identityName2 = TestUtilities.GenerateName("msi-id"); + IList dnsServers = new List(); + dnsServers.Add("dnsServer1"); + IContainerGroup containerGroup = null; + + IIdentity createdIdentity = msiManager.Identities + .Define(identityName1) + .WithRegion(Region.USWest) + .WithNewResourceGroup(rgName) + .WithAccessToCurrentResourceGroup(BuiltInRole.Reader) + .Create(); + + Microsoft.Azure.Management.Msi.Fluent.Identity.Definition.IWithCreate creatableIdentity = msiManager.Identities + .Define(identityName2) + .WithRegion(Region.USWest) + .WithExistingResourceGroup(rgName) + .WithAccessToCurrentResourceGroup(BuiltInRole.Contributor); + + try + { + containerGroup = containerInstanceManager.ContainerGroups.Define(cgName) + .WithRegion(Region.USEast) + .WithExistingResourceGroup(rgName) + .WithLinux() + .WithPublicImageRegistryOnly() + .WithEmptyDirectoryVolume("emptydir1") + .DefineContainerInstance("tomcat") + .WithImage("tomcat") + .WithExternalTcpPort(8080) + .WithCpuCoreCount(1) + .WithEnvironmentVariable("ENV1", "value1") + .Attach() + .DefineContainerInstance("nginx") + .WithImage("nginx") + .WithExternalTcpPort(80) + .WithEnvironmentVariableWithSecuredValue("ENV2", "securedValue1") + .Attach() + .WithExistingUserAssignedManagedServiceIdentity(createdIdentity) + .WithNewUserAssignedManagedServiceIdentity(creatableIdentity) + .Create(); + + Assert.Equal(cgName, containerGroup.Name); + Assert.Equal("Linux", containerGroup.OSType.Value); + Assert.Equal(0, containerGroup.ImageRegistryServers.Count); + Assert.Equal(1, containerGroup.Volumes.Count); + Assert.NotNull(containerGroup.Volumes["emptydir1"]); + Assert.NotNull(containerGroup.IPAddress); + Assert.True(containerGroup.IsIPAddressPublic); + Assert.Equal(2, containerGroup.ExternalTcpPorts.Length); + Assert.Equal(2, containerGroup.ExternalPorts.Count); + Assert.Empty(containerGroup.ExternalUdpPorts); + Assert.Equal(8080, containerGroup.ExternalTcpPorts[0]); + Assert.Equal(80, containerGroup.ExternalTcpPorts[1]); + Assert.Equal(2, containerGroup.Containers.Count); + Container tomcatContainer = containerGroup.Containers["tomcat"]; + Assert.NotNull(tomcatContainer); + Container nginxContainer = containerGroup.Containers["nginx"]; + Assert.NotNull(nginxContainer); + Assert.Equal("tomcat", tomcatContainer.Name); + Assert.Equal("tomcat", tomcatContainer.Image); + Assert.Equal(1.0, tomcatContainer.Resources.Requests.Cpu); + Assert.Equal(1.5, tomcatContainer.Resources.Requests.MemoryInGB); + Assert.Equal(1, tomcatContainer.Ports.Count); + Assert.Equal(8080, tomcatContainer.Ports[0].Port); + Assert.Null(tomcatContainer.VolumeMounts); + Assert.Null(tomcatContainer.Command); + Assert.NotNull(tomcatContainer.EnvironmentVariables); + Assert.Equal(1, tomcatContainer.EnvironmentVariables.Count); + Assert.Equal("nginx", nginxContainer.Name); + Assert.Equal("nginx", nginxContainer.Image); + Assert.Equal(1.0, nginxContainer.Resources.Requests.Cpu); + Assert.Equal(1.5, nginxContainer.Resources.Requests.MemoryInGB); + Assert.Equal(1, nginxContainer.Ports.Count); + Assert.Equal(80, nginxContainer.Ports[0].Port); + Assert.Null(nginxContainer.VolumeMounts); + Assert.Null(nginxContainer.Command); + Assert.NotNull(nginxContainer.EnvironmentVariables); + Assert.True(containerGroup.IsManagedServiceIdentityEnabled); + Assert.Null(containerGroup.SystemAssignedManagedServiceIdentityPrincipalId); + Assert.Equal(ResourceIdentityType.UserAssigned, containerGroup.ManagedServiceIdentityType); + // Ensure the "User Assigned (External) MSI" id can be retrieved from the virtual machine + IReadOnlyCollection emsiIds = containerGroup.UserAssignedManagedServiceIdentityIds; + Assert.NotNull(emsiIds); + Assert.Equal(2, emsiIds.Count); + + IContainerGroup containerGroup2 = containerInstanceManager.ContainerGroups.GetByResourceGroup(rgName, cgName); + + var containerGroupList = containerInstanceManager.ContainerGroups.ListByResourceGroup(rgName); + Assert.True(containerGroupList.Count() > 0); + Assert.NotNull(containerGroupList.First().State); + + containerGroup.Refresh(); + + var containerOperationsList = containerInstanceManager.ContainerGroups.ListOperations(); + Assert.True(containerOperationsList.Count() > 0); + + var emsiIdsEnumerator = emsiIds.GetEnumerator(); + emsiIdsEnumerator.MoveNext(); + var firstEmsiId = emsiIdsEnumerator.Current; + emsiIdsEnumerator.MoveNext(); + var secondEmsiId = emsiIdsEnumerator.Current; + + containerGroup.Update() + .WithoutTag("tag1") + .WithTag("tag2", "value2") + .WithoutUserAssignedManagedServiceIdentity(firstEmsiId) + .WithoutUserAssignedManagedServiceIdentity(secondEmsiId) + .Apply(); + Assert.False(containerGroup.Tags.ContainsKey("tag1")); + Assert.True(containerGroup.Tags.ContainsKey("tag2")); + Assert.Equal(0, containerGroup.UserAssignedManagedServiceIdentityIds.Count); + if (containerGroup.ManagedServiceIdentityType != null) + { + Assert.True(containerGroup.ManagedServiceIdentityType.Equals(ResourceIdentityType.None)); + } + + //fetch container group again and validate + containerGroup.Refresh(); + + Assert.Equal(0, containerGroup.UserAssignedManagedServiceIdentityIds.Count); + if (containerGroup.ManagedServiceIdentityType != null) + { + Assert.True(containerGroup.ManagedServiceIdentityType.Equals(ResourceIdentityType.None)); + } + + emsiIdsEnumerator = emsiIds.GetEnumerator(); + emsiIdsEnumerator.MoveNext(); + firstEmsiId = emsiIdsEnumerator.Current; + emsiIdsEnumerator.MoveNext(); + secondEmsiId = emsiIdsEnumerator.Current; + IIdentity identity1 = msiManager.Identities.GetById(firstEmsiId); + IIdentity identity2 = msiManager.Identities.GetById(secondEmsiId); + + // Update container group by enabling system MSI and adding two identities + containerGroup.Update() + .WithSystemAssignedManagedServiceIdentity() + .WithExistingUserAssignedManagedServiceIdentity(identity1) + .WithExistingUserAssignedManagedServiceIdentity(identity2) + .Apply(); + + Assert.NotNull(containerGroup.UserAssignedManagedServiceIdentityIds); + Assert.Equal(2, containerGroup.UserAssignedManagedServiceIdentityIds.Count); + Assert.NotNull(containerGroup.ManagedServiceIdentityType); + Assert.True(containerGroup.ManagedServiceIdentityType.Equals(ResourceIdentityType.SystemAssignedUserAssigned)); + + Assert.NotNull(containerGroup.SystemAssignedManagedServiceIdentityPrincipalId); + Assert.NotNull(containerGroup.SystemAssignedManagedServiceIdentityTenantId); + + containerGroup.Refresh(); + Assert.NotNull(containerGroup.UserAssignedManagedServiceIdentityIds); + Assert.Equal(2, containerGroup.UserAssignedManagedServiceIdentityIds.Count); + Assert.NotNull(containerGroup.ManagedServiceIdentityType); + Assert.True(containerGroup.ManagedServiceIdentityType.Equals(ResourceIdentityType.SystemAssignedUserAssigned)); + + Assert.NotNull(containerGroup.SystemAssignedManagedServiceIdentityPrincipalId); + Assert.NotNull(containerGroup.SystemAssignedManagedServiceIdentityTenantId); + + emsiIdsEnumerator = emsiIds.GetEnumerator(); + emsiIdsEnumerator.MoveNext(); + firstEmsiId = emsiIdsEnumerator.Current; + // Remove identities one by one (first one) + containerGroup.Update() + .WithoutUserAssignedManagedServiceIdentity(firstEmsiId) + .Apply(); + + Assert.NotNull(containerGroup.UserAssignedManagedServiceIdentityIds); + Assert.Equal(1, containerGroup.UserAssignedManagedServiceIdentityIds.Count); + Assert.NotNull(containerGroup.ManagedServiceIdentityType); + Assert.True(containerGroup.ManagedServiceIdentityType.Equals(ResourceIdentityType.SystemAssignedUserAssigned)); + Assert.NotNull(containerGroup.SystemAssignedManagedServiceIdentityPrincipalId); + Assert.NotNull(containerGroup.SystemAssignedManagedServiceIdentityTenantId); + + emsiIdsEnumerator.MoveNext(); + secondEmsiId = emsiIdsEnumerator.Current; + //Remove identities one by one (second one) + containerGroup.Update() + .WithoutUserAssignedManagedServiceIdentity(secondEmsiId) + .Apply(); + + Assert.Equal(0, containerGroup.UserAssignedManagedServiceIdentityIds.Count); + Assert.NotNull(containerGroup.ManagedServiceIdentityType); + Assert.True(containerGroup.ManagedServiceIdentityType.Equals(ResourceIdentityType.SystemAssigned)); + containerInstanceManager.ContainerGroups.DeleteById(containerGroup.Id); + } + finally + { + try + { + resourceManager.ResourceGroups.BeginDeleteByName(rgName); + } + catch { } + } + + } + } } } diff --git a/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceMSIUpdate.json b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceMSIUpdate.json new file mode 100644 index 000000000..171253145 --- /dev/null +++ b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceMSIUpdate.json @@ -0,0 +1,4052 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlZ3JvdXBzL3JnYWNpNzcwOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e52c6f1-6106-4b5f-82ef-9e28562714ce" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "3ad1077a-457e-484f-af1c-a65382c93303" + ], + "x-ms-correlation-request-id": [ + "3ad1077a-457e-484f-af1c-a65382c93303" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023617Z:3ad1077a-457e-484f-af1c-a65382c93303" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:16 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708\",\r\n \"name\": \"rgaci7708\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602?api-version=2018-11-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDU2MDI/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b070f86-1a79-468d-acae-0ff2e5dc3cd3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "3d7de7d9-7149-4c47-b895-f87eec99f3e8" + ], + "x-ms-correlation-request-id": [ + "3d7de7d9-7149-4c47-b895-f87eec99f3e8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023622Z:3d7de7d9-7149-4c47-b895-f87eec99f3e8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:21 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\",\r\n \"name\": \"msi-id5602\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Reader'&api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnUmVhZGVyJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eb125ea1-3361-4e77-812e-b014e93bb72e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "a134b564-9802-44e5-bbd8-4f8afd83298f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "9c4175aa-7d31-40d5-afdb-0bfef0dc6175" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023622Z:9c4175aa-7d31-40d5-afdb-0bfef0dc6175" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:22 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "01050a1e-deac-4fcc-bd3f-ff14a297fe85" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a19e00fa-1032-4731-9e92-a2457b31bbde" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "16cf4044-5934-48f4-be34-fac181c7d82d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023623Z:16cf4044-5934-48f4-be34-fac181c7d82d" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:23 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a9b31c0-8d3d-40c0-a88d-6935dabe2423" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6ac380c3-6e7c-4e1d-96e4-23bf7925174f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "b53192cc-574a-4e69-b553-0e5f7faf04e0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023625Z:b53192cc-574a-4e69-b553-0e5f7faf04e0" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:24 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9881a2c4-dddf-4150-9ef7-c769f30ab526" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ffd4dd7a-69d5-4fbf-9d32-b251fef0a395" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5dcd1f87-5aa3-4dea-b876-4a24af1681ed" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023627Z:5dcd1f87-5aa3-4dea-b876-4a24af1681ed" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:27 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "019f41fc-f956-407f-8a15-54555bab7a02" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5c3faaa8-ce82-43be-82bb-9ecc52409157" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "f6e82ebd-835d-49db-8d2e-7f4eebc7af2a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023631Z:f6e82ebd-835d-49db-8d2e-7f4eebc7af2a" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:30 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71ff61cb-c837-4b30-946e-8655c0589f10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd142279-acb4-4add-a72b-f2c3083d76d8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "5886d4d8-b655-41ed-91b7-f5fd5351c9d8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023636Z:5886d4d8-b655-41ed-91b7-f5fd5351c9d8" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:35 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df17b92b-8f63-456a-a11b-3e344cc7d35e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a480159a-ca18-4812-91e0-c038b0fbac03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "eb91d82a-b360-4811-98a1-7a6c64b67b44" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023641Z:eb91d82a-b360-4811-98a1-7a6c64b67b44" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:40 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5b33f36-5320-431e-828c-a8ddffae533a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "310dc33f-2880-4474-843a-67a8f466d458" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "a047ce4f-e1be-423f-a241-300afac44dd8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023648Z:a047ce4f-e1be-423f-a241-300afac44dd8" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:47 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 94d5bc10d5174165a1dfd4c099482181 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMjdmOTExMy1iODgzLTQxODYtYmJmNC00NmI0ZTQyMjg3MDY/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5becd8c-5c0e-4610-87f5-b6da05beadad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "2" + ], + "x-ms-request-id": [ + "8b353f79-5308-42dd-ba9a-df2067ecbb52" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "f5087b61-374e-4d0f-891b-2399ef176aa4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023657Z:f5087b61-374e-4d0f-891b-2399ef176aa4" + ], + "Date": [ + "Mon, 30 Sep 2019 02:36:57 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708\",\r\n \"createdOn\": \"2019-09-30T02:36:55.4792651Z\",\r\n \"updatedOn\": \"2019-09-30T02:36:55.4792651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"7d81e601-7c24-4238-8596-e28917ca4073\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/d27f9113-b883-4186-bbf4-46b4e4228706\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d27f9113-b883-4186-bbf4-46b4e4228706\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134?api-version=2018-11-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDYxMzQ/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "74058fde-68b4-4201-b63c-635a855a4251" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-request-id": [ + "1ef5cb8b-cac3-4170-b158-c4e83d9841a5" + ], + "x-ms-correlation-request-id": [ + "1ef5cb8b-cac3-4170-b158-c4e83d9841a5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023700Z:1ef5cb8b-cac3-4170-b158-c4e83d9841a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:00 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\",\r\n \"name\": \"msi-id6134\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Contributor'&api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnQ29udHJpYnV0b3InJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5ffda1f-f395-4160-a8a0-040fa7eb69b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "ef5871df-5923-41bd-b1ba-ad00a671004e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "b3a2943e-b0c3-4e92-adc1-ea3331604165" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023700Z:b3a2943e-b0c3-4e92-adc1-ea3331604165" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:00 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "832" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfa8e39c-48b4-4fa1-905f-af491eebdd6a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "23bdaf74-ee18-43aa-a988-c28e0757c233" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "25832711-7543-42b4-be7e-ea5a20f663ab" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023701Z:25832711-7543-42b4-be7e-ea5a20f663ab" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:01 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "babffe5d-0e41-4168-8fe0-30b62cab5508" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "092c231b-aca2-422a-893f-38c84c7c673f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "b5c5b4e9-a971-497e-922b-c42c55d1ba24" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023702Z:b5c5b4e9-a971-497e-922b-c42c55d1ba24" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:02 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1fd57b0-9f60-4fc8-b68e-89fc47c969e3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bac6c3bb-980e-4a4d-b71a-0ca285eb98fb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "e6d992e9-5eee-444e-b4da-155647b1d5d2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023705Z:e6d992e9-5eee-444e-b4da-155647b1d5d2" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:05 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d95c03b2-f658-4260-8eca-3650f4ba2146" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "610ecb07-acb4-4acf-bd4c-1acf1f16b662" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "3aa08a33-a70c-4e29-9a67-8cdeeadfe239" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023708Z:3aa08a33-a70c-4e29-9a67-8cdeeadfe239" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:08 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc449db-5664-49f2-a627-fa2f394bbea2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d7c2fc16-1e6b-461e-9e1a-b92bd02d22b5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "a285e5e3-142f-4edd-8d4c-c18cdde68703" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023713Z:a285e5e3-142f-4edd-8d4c-c18cdde68703" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:12 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33e5d0e9-eb7c-4090-8b7f-f0392642917e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a8fdffa0-2710-4c76-b831-782c750f2941" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-correlation-request-id": [ + "bdf484f8-85f4-4e4c-bf0c-54afd1067c1c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023718Z:bdf484f8-85f4-4e4c-bf0c-54afd1067c1c" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:18 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c283ee6-fc76-44bc-a445-60d820625451" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dbab3712-2b68-4005-950a-aa1372483625" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-correlation-request-id": [ + "ecc03ac8-afa3-45ad-9dd7-490a07804030" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023724Z:ecc03ac8-afa3-45ad-9dd7-490a07804030" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:24 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 29a001bb3c9e4644b600bbd62e36978b does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTc3MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xMTdjNmNlYy0zOGMxLTRjM2YtYjYxZC1kOGUxMDgzOWI0ODQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e80283a-9131-47a6-b304-747698f51722" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "2" + ], + "x-ms-request-id": [ + "0f809129-4082-46ca-a0f6-fd3e263018a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "feb6b357-4cee-4a50-b5b1-9fe4b8263c8b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023733Z:feb6b357-4cee-4a50-b5b1-9fe4b8263c8b" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:33 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708\",\r\n \"createdOn\": \"2019-09-30T02:37:32.1375993Z\",\r\n \"updatedOn\": \"2019-09-30T02:37:32.1375993Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"7d81e601-7c24-4238-8596-e28917ca4073\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.Authorization/roleAssignments/117c6cec-38c1-4c3f-b61d-d8e10839b484\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"117c6cec-38c1-4c3f-b61d-d8e10839b484\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {},\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\",\r\n \"secureValue\": \"securedValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25a4d930-0a3f-4dd1-ab5f-98290199f3b5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1922" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/ac3c5589-bc26-4587-883d-c50b277008ed?api-version=2018-06-01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "99" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "299" + ], + "x-ms-request-id": [ + "eastus:ac3c5589-bc26-4587-883d-c50b277008ed" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "89a35cce-5802-4e0d-868a-1f04bca4e00b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023742Z:89a35cce-5802-4e0d-868a-1f04bca4e00b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:37:41 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1543" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"ip\": \"52.255.222.3\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a5cdb9c1-db7b-4df4-a4b2-ea16fae52a16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1304" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/05dc6491-0959-4dcc-b8a5-8b595e5cbd46?api-version=2018-06-01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "99" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "299" + ], + "x-ms-request-id": [ + "eastus:05dc6491-0959-4dcc-b8a5-8b595e5cbd46" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ad94b40c-b0de-4e43-9142-8ab98bdeac36" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023943Z:ad94b40c-b0de-4e43-9142-8ab98bdeac36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:43 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {},\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"ip\": \"52.255.222.3\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fab72927-255b-4d2f-b399-a7c2d9d0275d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1690" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/d24d2245-cde2-43de-a9a8-3bff33beee3f?api-version=2018-06-01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "98" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "298" + ], + "x-ms-request-id": [ + "eastus:d24d2245-cde2-43de-a9a8-3bff33beee3f" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "9a6e9bb0-8425-4f3a-bd8b-dd608eb0eb46" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024023Z:9a6e9bb0-8425-4f3a-bd8b-dd608eb0eb46" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:23 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1789" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned, UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"ip\": \"52.255.222.3\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e68dd522-d660-4f09-b997-fc901da2cbff" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1529" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/5d9ac81e-dccf-49b2-8d06-995686c20f0b?api-version=2018-06-01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "95" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "295" + ], + "x-ms-request-id": [ + "eastus:5d9ac81e-dccf-49b2-8d06-995686c20f0b" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "40531f5f-188a-4734-a488-8f4ebe0ddef0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024120Z:40531f5f-188a-4734-a488-8f4ebe0ddef0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:41:19 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1571" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"ip\": \"52.255.222.3\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee00db33-c902-4f7f-8cd8-01b5fb834fa7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1314" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/f092b2eb-1ac8-4d34-b3e7-987d181f4831?api-version=2018-06-01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "94" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "294" + ], + "x-ms-request-id": [ + "eastus:f092b2eb-1ac8-4d34-b3e7-987d181f4831" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3796bc96-94e3-4083-b77a-3d7971b2b29e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024156Z:3796bc96-94e3-4083-b77a-3d7971b2b29e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:41:56 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1276" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/ac3c5589-bc26-4587-883d-c50b277008ed?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2FjM2M1NTg5LWJjMjYtNDU4Ny04ODNkLWM1MGIyNzcwMDhlZD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:55f5cc6d-8421-4c11-a1a2-f4b93117b41a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a39acb87-dd02-4568-8119-abbc6abc8ba9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023813Z:a39acb87-dd02-4568-8119-abbc6abc8ba9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:38:13 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "236" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2019-09-30T02:37:41.5997338Z\",\r\n \"properties\": {\r\n \"events\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/ac3c5589-bc26-4587-883d-c50b277008ed?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2FjM2M1NTg5LWJjMjYtNDU4Ny04ODNkLWM1MGIyNzcwMDhlZD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:c43be9b5-2ec4-4d64-aee9-dcfb2966071c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "d210a59d-08fd-4586-8ba9-eeb3f931d8e2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023844Z:d210a59d-08fd-4586-8ba9-eeb3f931d8e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:38:44 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "397" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-09-30T02:37:41.5997338Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/ac3c5589-bc26-4587-883d-c50b277008ed?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2FjM2M1NTg5LWJjMjYtNDU4Ny04ODNkLWM1MGIyNzcwMDhlZD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:83d6aa59-9597-4da1-9c5c-1d678272d630" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "759f9400-f98a-4140-8026-a31fa223fa1b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023914Z:759f9400-f98a-4140-8026-a31fa223fa1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:14 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1517" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:37:41.5997338Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:2afc21dd-503b-4ee5-9e87-18837789eedf" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "35f8be4e-66ee-4aa7-b547-80eca62daedc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023916Z:35f8be4e-66ee-4aa7-b547-80eca62daedc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:15 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3091" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:34Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f357de7-b2bc-42fb-a91f-bf16c6b22d16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:bf8dd98a-7628-44f6-99e3-5918797f91f8" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "5f5792b9-9331-4efd-8cf6-16dfce15e889" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023916Z:5f5792b9-9331-4efd-8cf6-16dfce15e889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:16 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3091" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:34Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13160ccb-2a68-4cd0-9ee3-81de4c1bdafb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:3347ef05-1b94-41e6-aa27-be9fb8c37320" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "fc510a1c-7ebd-4210-9e7d-0de4bce9d4f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023917Z:fc510a1c-7ebd-4210-9e7d-0de4bce9d4f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:16 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3091" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:34Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a798fdd0-9a04-4798-98cb-7b9cdaa2a848" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:dfef7443-2f1d-4b3a-9e57-996835719c62" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "8ed1bd64-4aa7-4658-8a9c-a92d264815ed" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023917Z:8ed1bd64-4aa7-4658-8a9c-a92d264815ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:17 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3091" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:34Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "54db6261-3e02-435f-a8e1-855c1ba139ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:90455c2b-9c7a-4630-b878-6cedbc37ea82" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "aa457953-dafe-490e-92ad-0eadfa84ce18" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023918Z:aa457953-dafe-490e-92ad-0eadfa84ce18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:17 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3091" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:34Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:a1edb077-be3c-43d6-953b-7ed5d4fe42e4" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "64cf83a9-af56-41d8-bc1d-18f72506fdcb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024015Z:64cf83a9-af56-41d8-bc1d-18f72506fdcb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:14 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2466" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:43Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8cea2f5-08da-4dce-acd2-7d3a21b12523" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:27f68ba5-9a1d-428a-8552-97e353efcf94" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "96a88a4e-9915-465d-8695-dc63bbbac79a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024015Z:96a88a4e-9915-465d-8695-dc63bbbac79a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:15 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2466" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:43Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2185f8d0-87d3-4241-8d65-fe618ef6f78e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:711d4bdd-d70c-4b89-a1ad-fcbd556eed2a" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "6aeb8710-4aed-4b5f-a8a1-90ffd5d6bff8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024016Z:6aeb8710-4aed-4b5f-a8a1-90ffd5d6bff8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:15 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2466" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:43Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:9becaa27-2a90-433a-84db-f42f25f80160" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "ec677ab4-a7db-4692-b164-66fcd9f3fee0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024054Z:ec677ab4-a7db-4692-b164-66fcd9f3fee0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:53 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "233a6952-4978-44de-86cb-5d3946ae93f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:d7740754-7a5a-4326-980d-d85a4ffbc2eb" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "d1ec2518-a4b4-4725-874e-a22065a8fcd9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024055Z:d1ec2518-a4b4-4725-874e-a22065a8fcd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:54 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f15c19ec-1cb8-4fd6-a9bc-8a74a8a72a8a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:d6ecc181-7f7c-40af-ad75-ac38754194fa" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "1629d055-db9e-4439-97fc-ab35080259d7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024056Z:1629d055-db9e-4439-97fc-ab35080259d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:55 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:f04af4a7-c8ef-42c3-9cab-b8ed3aac6b5d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "25326cd1-46ab-4622-8e0e-1d72ec0729ca" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024152Z:25326cd1-46ab-4622-8e0e-1d72ec0729ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:41:52 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2874" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6c592ed-168f-4a30-bc8b-52e7baeff740" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:0424dd1d-5996-4ce2-be3a-daab689d6724" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "62e2f0d1-b9cf-4503-9b07-29af8fee3afc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024152Z:62e2f0d1-b9cf-4503-9b07-29af8fee3afc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:41:52 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2874" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:1b9a25f1-4b9b-437b-82d5-b99bbc6e40c9" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "8e908d2f-ed55-4a0d-b4bb-ce97be8160d8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024227Z:8e908d2f-ed55-4a0d-b4bb-ce97be8160d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:42:27 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2c9d911-b0be-42c3-8bbe-34d4be85edac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:35d66855-eb77-4d62-a7ab-dfd50ce937ce" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "af48146c-9547-452d-8b35-de78c0b3cbb8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024228Z:af48146c-9547-452d-8b35-de78c0b3cbb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:42:28 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1923df77-c92b-4758-8884-49acb06fe0c1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:0f4b4d80-0261-4d0b-86c5-e8342cd789d5" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "8636763f-f9dc-4fa1-8b28-127be2470ee2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023917Z:8636763f-f9dc-4fa1-8b28-127be2470ee2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:16 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1510" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.ContainerInstance/operations?api-version=2018-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2Uvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE4LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2355ea56-3bb1-41ff-bba8-90d8ad336455" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "southeastasia:fa966b6b-a5a3-4952-a7d9-ee611d875a03" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c0c04cbc-3307-4b3f-9249-11f6341a4371" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023918Z:c0c04cbc-3307-4b3f-9249-11f6341a4371" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:18 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "7905" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Register Microsoft Container Instance\",\r\n \"description\": \"Registers the subscription for the container instance resource provider and enables the creation of container groups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Groups\",\r\n \"description\": \"Get all container goups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Create or update Container Group\",\r\n \"description\": \"Create or update a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Delete Container Group\",\r\n \"description\": \"Delete the specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/restart/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Restart Container Group\",\r\n \"description\": \"Restarts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Stop Container Group\",\r\n \"description\": \"Stops a specific container group. Compute resources will be deallocated and billing will stop.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Start Container Group\",\r\n \"description\": \"Starts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/logs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Logs\",\r\n \"description\": \"Get logs for a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/exec/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Exec Into a Container\",\r\n \"description\": \"Exec into a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Async operation result\",\r\n \"description\": \"Get async operation result\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/cachedImages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Cached Images\",\r\n \"operation\": \"Get cached images.\",\r\n \"description\": \"Gets the cached images for the subscription in a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/capabilities/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Capabilities\",\r\n \"operation\": \"Get Capabilities\",\r\n \"description\": \"Get the capabilities for a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/usages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Usages\",\r\n \"operation\": \"Get Regional Usage\",\r\n \"description\": \"Get the usage for a specific region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read container group metric definitions\",\r\n \"description\": \"Gets the available metrics for container group.\"\r\n },\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"CpuUsage\",\r\n \"displayName\": \"CPU Usage\",\r\n \"displayDescription\": \"CPU usage on all cores in millicores.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"MemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Total memory usage in byte.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NetworkBytesReceivedPerSecond\",\r\n \"displayName\": \"Network Bytes Received Per Second\",\r\n \"displayDescription\": \"The network bytes received per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NetworkBytesTransmittedPerSecond\",\r\n \"displayName\": \"Network Bytes Transmitted Per Second\",\r\n \"displayDescription\": \"The network bytes transmitted per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Write Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Delete virtual network or subnet notification\",\r\n \"operation\": \"Delete virtual network or subnet notification\",\r\n \"description\": \"Notifies Microsoft.ContainerInstance that virtual network or subnet is being deleted.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Read operations.\",\r\n \"description\": \"List the operations for Azure Container Instance service.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Read operations.\",\r\n \"description\": \"List the operations for Azure Container Instance service.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/serviceassociationlinks/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Service Association Link.\",\r\n \"operation\": \"Delete Service Association Link.\",\r\n \"description\": \"Delete the service association link created by azure container instance resource provider on a subnet.\"\r\n },\r\n \"origin\": \"User\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3afcc8da-8ace-4814-8db1-661cea948ad5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:2a5502b4-2d05-4792-aec7-c87d723c80c9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "48139812-da15-4fa9-b2ac-e2eed8b33daa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T023921Z:48139812-da15-4fa9-b2ac-e2eed8b33daa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:39:20 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3106" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:34Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:37:48Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:29Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:34Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:38:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:35Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:41Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:38:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec92fd4c-ae66-40c6-9ad6-cc89350a3805" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:da85d30b-ee44-4ccb-be4d-5e5573a6d0a9" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e5fd7e0f-1ae2-4c16-b2e2-1c4f6fb6a8b5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024019Z:e5fd7e0f-1ae2-4c16-b2e2-1c4f6fb6a8b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:18 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2466" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:43Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:39:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"type\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dda01c57-af81-40ce-93af-afeae82ddcb8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:6aa76ba4-fb6a-4190-9dba-f0fff7fc71e7" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "0dc1bdfe-365e-4e76-827b-6c1a317c0822" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024057Z:0dc1bdfe-365e-4e76-827b-6c1a317c0822" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:56 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3128" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\": {\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc5d37e0-1e69-4a77-9c14-16ad8c641e39" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "69" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:263706d4-9b2b-46f1-8444-13e81ce8b958" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e6957fcd-8fb7-4d98-adcd-fdc02d2b6aad" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024153Z:e6957fcd-8fb7-4d98-adcd-fdc02d2b6aad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:41:53 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2874" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\": {\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n },\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned, UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/05dc6491-0959-4dcc-b8a5-8b595e5cbd46?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zLzA1ZGM2NDkxLTA5NTktNGRjYy1iOGE1LThiNTk1ZTVjYmQ0Nj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:1c171b54-29dd-4ded-a807-4fce73d4f25c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "459ac503-b6b9-471a-8881-7b40282a63d8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024015Z:459ac503-b6b9-471a-8881-7b40282a63d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:14 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1517" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:39:41.8764118Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:39:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602?api-version=2018-11-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDU2MDI/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4125633-0e2a-4ee2-bf8f-c55a904b299c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "469a4e9e-5d53-4dc3-a816-86917bb2970f" + ], + "x-ms-correlation-request-id": [ + "469a4e9e-5d53-4dc3-a816-86917bb2970f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024017Z:469a4e9e-5d53-4dc3-a816-86917bb2970f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:17 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5602\",\r\n \"name\": \"msi-id5602\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"94d5bc10-d517-4165-a1df-d4c099482181\",\r\n \"clientId\": \"1af72edf-8917-4f62-95a1-bc028e2b79d8\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134?api-version=2018-11-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDYxMzQ/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c51e1258-8c15-4665-a812-9bd1d08fb8fb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8ea6ad2c-2549-4b8d-a539-68273abd65d1" + ], + "x-ms-correlation-request-id": [ + "8ea6ad2c-2549-4b8d-a539-68273abd65d1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024017Z:8ea6ad2c-2549-4b8d-a539-68273abd65d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:17 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id6134\",\r\n \"name\": \"msi-id6134\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"29a001bb-3c9e-4644-b600-bbd62e36978b\",\r\n \"clientId\": \"94800c2b-ee44-41d3-94c0-9568f6d49a46\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/d24d2245-cde2-43de-a9a8-3bff33beee3f?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2QyNGQyMjQ1LWNkZTItNDNkZS1hOWE4LTNiZmYzM2JlZWUzZj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:b446a5e2-2c48-4f8a-b46e-1e1ce622fcfe" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "ba275103-8763-4f04-9cf4-46fd4d23563f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024054Z:ba275103-8763-4f04-9cf4-46fd4d23563f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:40:53 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1517" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:40:22.5029678Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/5d9ac81e-dccf-49b2-8d06-995686c20f0b?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zLzVkOWFjODFlLWRjY2YtNDliMi04ZDA2LTk5NTY4NmMyMGYwYj9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:84520edb-81cb-4eed-be87-f098bcb244d2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2311f074-b7ff-45ef-9212-9d5a85554a0a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024151Z:2311f074-b7ff-45ef-9212-9d5a85554a0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:41:50 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1517" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:41:18.6370077Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/f092b2eb-1ac8-4d34-b3e7-987d181f4831?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2YwOTJiMmViLTFhYzgtNGQzNC1iM2U3LTk4N2QxODFmNDgzMT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:be524f64-6000-4d40-acc4-2ef142270f4c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "1fb875a9-99f5-4c18-8431-ab866f6dbbee" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024226Z:1fb875a9-99f5-4c18-8431-ab866f6dbbee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:42:26 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1517" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:41:55.5951246Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpNzcwOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxMzUzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f4b396c-2e6e-4b52-b51f-584f7991fbc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "99" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "299" + ], + "x-ms-request-id": [ + "eastus:6f1e5e87-4a33-42a1-a14d-d935116a5f96" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "5de039ef-601b-4737-9fd4-6a0083e69823" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024244Z:5de039ef-601b-4737-9fd4-6a0083e69823" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:42:43 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2579" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:24Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:23Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:40:25Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:24Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:40:25Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.255.222.3\",\r\n \"type\": \"Public\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"dd030f90-e894-40a9-8049-523c5f26a794\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci7708/providers/Microsoft.ContainerInstance/containerGroups/aci1353\",\r\n \"name\": \"aci1353\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci7708?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlZ3JvdXBzL3JnYWNpNzcwOD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "40d4ff29-b4b2-4aea-b630-ff7b596dfa7f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTc3MDgtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ced11b5b-61e1-43be-9ae2-8a73e4168bec" + ], + "x-ms-correlation-request-id": [ + "ced11b5b-61e1-43be-9ae2-8a73e4168bec" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T024250Z:ced11b5b-61e1-43be-9ae2-8a73e4168bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:42:49 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + } + ], + "Names": { + "ContainerInstanceMSIUpdate": [ + "rgaci7708", + "aci1353", + "msi-id5602", + "msi-id6134", + "d27f9113-b883-4186-bbf4-46b4e4228706", + "117c6cec-38c1-4c3f-b61d-d8e10839b484" + ] + }, + "Variables": { + "ServicePrincipal": "41966be6-c4d1-4730-bb67-7e697e5a6b57", + "AADTenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "SubscriptionId": "1c638cf4-608f-4ee6-b680-c329e824c3a8" + } +} \ No newline at end of file diff --git a/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithSystemAssignedMSI.json b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithSystemAssignedMSI.json index 99d931deb..f07213476 100644 --- a/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithSystemAssignedMSI.json +++ b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithSystemAssignedMSI.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4217?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JnYWNpNDIxNz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci9114?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlZ3JvdXBzL3JnYWNpOTExND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7e3edf4d-697d-4e9f-bfb4-a9e8d3842038" + "31ea5eae-c2ff-4427-a59c-bda68a074870" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,13 +37,13 @@ "1199" ], "x-ms-request-id": [ - "dd83ca7a-a476-43a4-8d5a-082f7065797b" + "42acd5a6-1fb8-47bc-a40e-302c3ead9245" ], "x-ms-correlation-request-id": [ - "dd83ca7a-a476-43a4-8d5a-082f7065797b" + "42acd5a6-1fb8-47bc-a40e-302c3ead9245" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222038Z:dd83ca7a-a476-43a4-8d5a-082f7065797b" + "SOUTHEASTASIA:20190930T025817Z:42acd5a6-1fb8-47bc-a40e-302c3ead9245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +52,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:20:38 GMT" + "Mon, 30 Sep 2019 02:58:16 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "171" @@ -64,33 +67,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217\",\r\n \"name\": \"rgaci4217\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114\",\r\n \"name\": \"rgaci9114\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\",\r\n \"secureValue\": \"securedValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\",\r\n \"secureValue\": \"securedValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e59108cc-387c-4b20-bc18-e05b2ac628c3" + "6ed3d8e7-3db0-4664-9fdc-efca2fae8e9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1653" + "1652" ] }, "ResponseHeaders": { @@ -101,25 +104,25 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerInstance/locations/eastus/operations/b1447a0f-f65d-4bd2-bcf3-e6728ce38508?api-version=2018-06-01" + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/d61de318-af5b-4308-bebe-73e5cfbbcf80?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ "99" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "298" + "296" ], "x-ms-request-id": [ - "eastus:b1447a0f-f65d-4bd2-bcf3-e6728ce38508" + "eastus:d61de318-af5b-4308-bebe-73e5cfbbcf80" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "709efa04-ac7d-476e-b953-d556f80eeea7" + "cc86cdd3-9d33-4b5a-9373-328f986a771d" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222045Z:709efa04-ac7d-476e-b953-d556f80eeea7" + "SOUTHEASTASIA:20190930T025829Z:cc86cdd3-9d33-4b5a-9373-328f986a771d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -128,10 +131,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:20:44 GMT" + "Mon, 30 Sep 2019 02:58:28 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "1170" + "1167" ], "Content-Type": [ "application/json; charset=utf-8" @@ -140,21 +146,100 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerInstance/locations/eastus/operations/b1447a0f-f65d-4bd2-bcf3-e6728ce38508?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2IxNDQ3YTBmLWY2NWQtNGJkMi1iY2YzLWU2NzI4Y2UzODUwOD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"ip\": \"104.45.170.192\",\r\n \"dnsNameLabel\": \"aci579\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6ef051a-bbcc-40c7-944b-9b3b6bcdfeeb" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1380" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/f4910c2f-5f35-453c-8f47-12ecf09ea90e?api-version=2018-06-01" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "99" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "293" + ], + "x-ms-request-id": [ + "eastus:f4910c2f-5f35-453c-8f47-12ecf09ea90e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "8d52d8b8-f231-478d-98b5-fedf8e09397d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T025943Z:8d52d8b8-f231-478d-98b5-fedf8e09397d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:59:42 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1329" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/d61de318-af5b-4308-bebe-73e5cfbbcf80?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2Q2MWRlMzE4LWFmNWItNDMwOC1iZWJlLTczZTVjZmJiY2Y4MD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -168,16 +253,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:df7a6c6c-1c8b-4cfc-92ec-3e7a558104f4" + "eastus:d4f62ee3-27e8-48cd-a37c-05610adf1444" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "89b9103f-03ea-4183-a22b-75c08460141b" + "9e1111e9-c0c0-446e-8162-4d1670f73587" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222116Z:89b9103f-03ea-4183-a22b-75c08460141b" + "SOUTHEASTASIA:20190930T025901Z:9e1111e9-c0c0-446e-8162-4d1670f73587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,10 +271,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:15 GMT" + "Mon, 30 Sep 2019 02:59:01 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "569" + "235" ], "Content-Type": [ "application/json; charset=utf-8" @@ -198,21 +286,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"status\": \"Creating\",\r\n \"startTime\": \"2019-06-19T22:20:44.7035361Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2019-09-30T02:58:28.1600007Z\",\r\n \"properties\": {\r\n \"events\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerInstance/locations/eastus/operations/b1447a0f-f65d-4bd2-bcf3-e6728ce38508?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2IxNDQ3YTBmLWY2NWQtNGJkMi1iY2YzLWU2NzI4Y2UzODUwOD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/d61de318-af5b-4308-bebe-73e5cfbbcf80?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2Q2MWRlMzE4LWFmNWItNDMwOC1iZWJlLTczZTVjZmJiY2Y4MD9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -226,16 +314,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:544b3583-e415-420b-a70a-bdcfcc3a14ba" + "eastus:bf2ec9f6-0c1d-4a8a-8f8d-e4c786b0b50b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "5575dd3b-b0fd-4ff2-8539-25b865a67999" + "0b87b9af-172e-42d1-8dbd-7b5ba124f459" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222146Z:5575dd3b-b0fd-4ff2-8539-25b865a67999" + "SOUTHEASTASIA:20190930T025931Z:0b87b9af-172e-42d1-8dbd-7b5ba124f459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,10 +332,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:46 GMT" + "Mon, 30 Sep 2019 02:59:30 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "1517" + "1516" ], "Content-Type": [ "application/json; charset=utf-8" @@ -256,21 +347,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-06-19T22:20:44.7035361Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:58:28.1600007Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -284,16 +375,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:2cea33cc-abde-40a6-b5be-8638010a8ab5" + "eastus:805e4672-071f-47a8-b843-555be184fc57" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "10986391-4b42-4856-8404-8e8801081841" + "20304314-1be4-48d1-b57b-76272e7dee3c" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222146Z:10986391-4b42-4856-8404-8e8801081841" + "SOUTHEASTASIA:20190930T025933Z:20304314-1be4-48d1-b57b-76272e7dee3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -302,10 +393,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:46 GMT" + "Mon, 30 Sep 2019 02:59:32 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -314,27 +408,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:12Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:21Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf2692e8-ac2b-4cd8-becf-aeebb4ceb001" + "98ea4cea-3f48-4d65-a469-400c2b347a9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -348,16 +442,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:f3df7125-f55f-449c-a9eb-573fbc3882aa" + "eastus:275aacbf-07d6-421b-a01e-9cf061c2a843" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "a8be54d5-c5b5-4840-b229-e61f2fbc386d" + "2a0c9325-dc9d-4299-9218-d38c2e1246c5" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222146Z:a8be54d5-c5b5-4840-b229-e61f2fbc386d" + "SOUTHEASTASIA:20190930T025933Z:2a0c9325-dc9d-4299-9218-d38c2e1246c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -366,10 +460,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:46 GMT" + "Mon, 30 Sep 2019 02:59:32 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -378,27 +475,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:12Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:21Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "151f1a2a-291b-46f3-8676-d13a3a46ea2e" + "4f77755c-6b6f-4685-a37f-954871481bf5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -412,16 +509,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:c77010c2-a846-470f-88a2-341e3b6c5717" + "eastus:15c3c9f8-94e8-4063-acf4-869cea5753b6" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "bf9964f4-e739-45e4-8304-f158ba4e195a" + "e4d9a338-5ec1-4f1a-944a-7be8bde4814b" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222147Z:bf9964f4-e739-45e4-8304-f158ba4e195a" + "SOUTHEASTASIA:20190930T025934Z:e4d9a338-5ec1-4f1a-944a-7be8bde4814b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -430,10 +527,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:47 GMT" + "Mon, 30 Sep 2019 02:59:33 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -442,27 +542,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:12Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:21Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16e87c35-0f6e-40b5-bd8a-4fb901bd2f0d" + "0e7fe08a-5cee-4a2f-bab3-0f4402177b78" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -476,16 +576,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:b26b8da9-015d-4e9b-9897-f25fb5c45733" + "eastus:5bd24709-5921-4822-87bc-ec9c0362d60d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "08958f67-5bca-4657-bd3e-6cec34f62ba4" + "2ba5e182-3153-4f15-803e-1cf8e16cb658" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222147Z:08958f67-5bca-4657-bd3e-6cec34f62ba4" + "SOUTHEASTASIA:20190930T025935Z:2ba5e182-3153-4f15-803e-1cf8e16cb658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,10 +594,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:47 GMT" + "Mon, 30 Sep 2019 02:59:34 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -506,27 +609,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:12Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:21Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "045591fb-de3b-4dae-b80b-02b6a0a816ab" + "f06296d7-a49e-4d97-9101-afde84003868" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -540,16 +643,77 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:1b2931bd-8e22-4dc7-b0a0-084213377c5d" + "eastus:277be5d5-b473-4977-974e-4d4dc4cb6ce5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" + ], + "x-ms-correlation-request-id": [ + "03160b72-9c9f-496d-bc80-7425b7da3b59" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T025935Z:03160b72-9c9f-496d-bc80-7425b7da3b59" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 02:59:34 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "2715" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:12Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:21Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:54a9296d-3705-4be3-8c3b-16bca30ee080" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "x-ms-correlation-request-id": [ - "9acf4fbc-cb5c-4f1b-a29f-5a49eeeace8d" + "2f0bd9be-731d-4ff2-9689-d72c60f23d93" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222147Z:9acf4fbc-cb5c-4f1b-a29f-5a49eeeace8d" + "SOUTHEASTASIA:20190930T030014Z:2f0bd9be-731d-4ff2-9689-d72c60f23d93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,10 +722,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:47 GMT" + "Mon, 30 Sep 2019 03:00:14 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -570,27 +737,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:45Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35ddc7f7-b89a-4413-986f-f84d6b6e4477" + "1c3802ee-33a2-488c-8cee-ff055536c2c0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -604,16 +771,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:fbebffaf-af2b-4ab9-9846-e823c15a378c" + "eastus:8c368a8b-c37a-4b69-93c9-da2ba7b0e4cb" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-correlation-request-id": [ - "864576c1-ccb2-498f-897b-5a2841cd672d" + "4ddefda3-0dc7-492e-afc6-2b95f01207e6" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222149Z:864576c1-ccb2-498f-897b-5a2841cd672d" + "SOUTHEASTASIA:20190930T030014Z:4ddefda3-0dc7-492e-afc6-2b95f01207e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -622,10 +789,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:49 GMT" + "Mon, 30 Sep 2019 03:00:14 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -634,27 +804,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:45Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTEwLTAx", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b17bd30-93ae-4e42-8ba0-fa4006f192fa" + "d86e2c88-70ee-46cd-86e6-e8e4b615d242" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -668,16 +838,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:efe50bfb-672f-44b1-8ebb-51a52c3593db" + "eastus:9172f095-c2cc-4c01-8070-633f6047194d" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "fd87f461-ed6c-4226-bda7-00de36679867" + "2c75d8a8-df1f-4242-baa9-a37882697c2d" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222147Z:fd87f461-ed6c-4226-bda7-00de36679867" + "SOUTHEASTASIA:20190930T025934Z:2c75d8a8-df1f-4242-baa9-a37882697c2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -686,10 +856,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:47 GMT" + "Mon, 30 Sep 2019 02:59:33 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "1137" + "1134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -698,7 +871,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -708,17 +881,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "549b0cf4-9ad2-42d7-bd41-866ff7263d74" + "72545d19-42b0-448b-a27f-00d6f607ed74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -732,16 +905,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:d223b42f-22d6-4f28-bbbd-933404cb3011" + "southeastasia:03a44a38-6747-4f5b-86fc-7502f1cfa99f" ], "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "b4c3b602-bfa4-43c0-9c62-9f556f6a1db2" + "c7d7b704-678e-4a64-9018-5b69a788b510" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222147Z:b4c3b602-bfa4-43c0-9c62-9f556f6a1db2" + "SOUTHEASTASIA:20190930T025935Z:c7d7b704-678e-4a64-9018-5b69a788b510" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,10 +923,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:47 GMT" + "Mon, 30 Sep 2019 02:59:34 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "6734" + "7905" ], "Content-Type": [ "application/json; charset=utf-8" @@ -762,27 +938,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Register Microsoft Container Instance\",\r\n \"description\": \"Registers the subscription for the container instance resource provider and enables the creation of container groups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Groups\",\r\n \"description\": \"Get all container goups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Create or update Container Group\",\r\n \"description\": \"Create or update a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Delete Container Group\",\r\n \"description\": \"Delete the specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/restart/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Restart Container Group\",\r\n \"description\": \"Restarts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Stop Container Group\",\r\n \"description\": \"Stops a specific container group. Compute resources will be deallocated and billing will stop.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Start Container Group\",\r\n \"description\": \"Starts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/logs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Logs\",\r\n \"description\": \"Get logs for a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/exec/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Exec Into a Container\",\r\n \"description\": \"Exec into a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/cachedImages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Cached Images\",\r\n \"operation\": \"Get cached images.\",\r\n \"description\": \"Gets the cached images for the subscription in a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/capabilities/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Capabilities\",\r\n \"operation\": \"Get Capabilities\",\r\n \"description\": \"Get the capabilities for a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/usages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Usages\",\r\n \"operation\": \"Get Regional Usage\",\r\n \"description\": \"Get the usage for a specific region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read container group metric definitions\",\r\n \"description\": \"Gets the available metrics for container group.\"\r\n },\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"CpuUsage\",\r\n \"displayName\": \"CPU Usage\",\r\n \"displayDescription\": \"CPU usage on all cores in millicores.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"MemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Total memory usage in byte.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NetworkBytesReceivedPerSecond\",\r\n \"displayName\": \"Network Bytes Received Per Second\",\r\n \"displayDescription\": \"The network bytes received per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NetworkBytesTransmittedPerSecond\",\r\n \"displayName\": \"Network Bytes Transmitted Per Second\",\r\n \"displayDescription\": \"The network bytes transmitted per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Write Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Delete virtual network or subnet notification\",\r\n \"operation\": \"Delete virtual network or subnet notification\",\r\n \"description\": \"Notifies Microsoft.ContainerInstance that virtual network or subnet is being deleted.\"\r\n },\r\n \"origin\": \"User\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Register Microsoft Container Instance\",\r\n \"description\": \"Registers the subscription for the container instance resource provider and enables the creation of container groups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Groups\",\r\n \"description\": \"Get all container goups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Create or update Container Group\",\r\n \"description\": \"Create or update a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Delete Container Group\",\r\n \"description\": \"Delete the specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/restart/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Restart Container Group\",\r\n \"description\": \"Restarts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Stop Container Group\",\r\n \"description\": \"Stops a specific container group. Compute resources will be deallocated and billing will stop.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Start Container Group\",\r\n \"description\": \"Starts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/logs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Logs\",\r\n \"description\": \"Get logs for a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/exec/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Exec Into a Container\",\r\n \"description\": \"Exec into a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Async operation result\",\r\n \"description\": \"Get async operation result\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/cachedImages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Cached Images\",\r\n \"operation\": \"Get cached images.\",\r\n \"description\": \"Gets the cached images for the subscription in a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/capabilities/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Capabilities\",\r\n \"operation\": \"Get Capabilities\",\r\n \"description\": \"Get the capabilities for a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/usages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Usages\",\r\n \"operation\": \"Get Regional Usage\",\r\n \"description\": \"Get the usage for a specific region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read container group metric definitions\",\r\n \"description\": \"Gets the available metrics for container group.\"\r\n },\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"CpuUsage\",\r\n \"displayName\": \"CPU Usage\",\r\n \"displayDescription\": \"CPU usage on all cores in millicores.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"MemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Total memory usage in byte.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NetworkBytesReceivedPerSecond\",\r\n \"displayName\": \"Network Bytes Received Per Second\",\r\n \"displayDescription\": \"The network bytes received per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NetworkBytesTransmittedPerSecond\",\r\n \"displayName\": \"Network Bytes Transmitted Per Second\",\r\n \"displayDescription\": \"The network bytes transmitted per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Write Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Delete virtual network or subnet notification\",\r\n \"operation\": \"Delete virtual network or subnet notification\",\r\n \"description\": \"Notifies Microsoft.ContainerInstance that virtual network or subnet is being deleted.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Read operations.\",\r\n \"description\": \"List the operations for Azure Container Instance service.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Read operations.\",\r\n \"description\": \"List the operations for Azure Container Instance service.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/serviceassociationlinks/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Service Association Link.\",\r\n \"operation\": \"Delete Service Association Link.\",\r\n \"description\": \"Delete the service association link created by azure container instance resource provider on a subnet.\"\r\n },\r\n \"origin\": \"User\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ca949749-ef4c-4c9e-9e29-0e9830c2e29f" + "b7916cc1-6cf4-4d31-b74b-7c4d6509d4f5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -802,16 +978,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:42299a81-7edc-417a-833c-ed394b6c5db6" + "eastus:23aef4ad-598d-412d-92e5-8af505857bbf" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], "x-ms-correlation-request-id": [ - "df5c5519-50ac-4eb9-94f4-9e02fba65468" + "3e26471a-1e0f-45df-bea8-dbd7aaa06aba" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222149Z:df5c5519-50ac-4eb9-94f4-9e02fba65468" + "SOUTHEASTASIA:20190930T025939Z:3e26471a-1e0f-45df-bea8-dbd7aaa06aba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -820,10 +996,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:49 GMT" + "Mon, 30 Sep 2019 02:59:38 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2715" ], "Content-Type": [ "application/json; charset=utf-8" @@ -832,27 +1011,88 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:12Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:58:36Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:03Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:11Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:21Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:12Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:17Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:21Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDIxNy9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1NDkxP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/f4910c2f-5f35-453c-8f47-12ecf09ea90e?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2Y0OTEwYzJmLTVmMzUtNDUzYy04ZjQ3LTEyZWNmMDllYTkwZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:16cecebb-f589-43c7-9575-b2f6efc620da" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "5dbc1f6f-3c73-4e55-b6a1-b9d9e6ef5b62" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030014Z:5dbc1f6f-3c73-4e55-b6a1-b9d9e6ef5b62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 03:00:13 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T02:59:42.8788866Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpOTExNC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k1Nzk/YXBpLXZlcnNpb249MjAxOC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32ad4272-d470-487e-a8f1-911a7d733cc8" + "b404ac7e-bb28-406b-9411-b7bc9c18030d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -872,16 +1112,16 @@ "299" ], "x-ms-request-id": [ - "eastus:b60fcc09-0276-416a-8f4f-574ed40f6f60" + "eastus:7f585df4-cb01-455c-a802-05b24e9f0b5c" ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "69943836-f750-4e93-9ae4-09ca9a396e5a" + "5c25d835-c4a7-4e07-97ad-f1ec1ab3bc8c" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222151Z:69943836-f750-4e93-9ae4-09ca9a396e5a" + "SOUTHEASTASIA:20190930T030018Z:5c25d835-c4a7-4e07-97ad-f1ec1ab3bc8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -890,10 +1130,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:51 GMT" + "Mon, 30 Sep 2019 03:00:18 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "2718" + "2668" ], "Content-Type": [ "application/json; charset=utf-8" @@ -902,27 +1145,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:20Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:20:47Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:10Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:21:28Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:20Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:25Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:28Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:21:29Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.149.91\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci5491\",\r\n \"fqdn\": \"aci5491.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"9997c123-559d-4afd-8fda-3bd216ebbaeb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4217/providers/Microsoft.ContainerInstance/containerGroups/aci5491\",\r\n \"name\": \"aci5491\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:44Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:43Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T02:59:45Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:44Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"lastTimestamp\": \"2019-09-30T02:59:45Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"104.45.170.192\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci579\",\r\n \"fqdn\": \"aci579.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"principalId\": \"77ed8aff-96b3-4e2a-949f-c4ab06a3aa65\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci9114/providers/Microsoft.ContainerInstance/containerGroups/aci579\",\r\n \"name\": \"aci579\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4217?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JnYWNpNDIxNz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci9114?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlZ3JvdXBzL3JnYWNpOTExND9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3aba638-0107-4746-afc5-3c3fc204e542" + "abaee903-693e-4875-b9ff-0a8ba1d89402" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -933,22 +1176,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTQyMTctRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTkxMTQtRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "2f03b40a-4ce2-4bfc-ba43-cd75541ae273" + "52fc41f6-09f6-4e13-867f-0a6f05b14e25" ], "x-ms-correlation-request-id": [ - "2f03b40a-4ce2-4bfc-ba43-cd75541ae273" + "52fc41f6-09f6-4e13-867f-0a6f05b14e25" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222153Z:2f03b40a-4ce2-4bfc-ba43-cd75541ae273" + "SOUTHEASTASIA:20190930T030026Z:52fc41f6-09f6-4e13-867f-0a6f05b14e25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,7 +1200,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:21:53 GMT" + "Mon, 30 Sep 2019 03:00:25 GMT" + ], + "Connection": [ + "keep-alive" ], "Expires": [ "-1" @@ -972,13 +1218,13 @@ ], "Names": { "ContainerInstanceWithPublicIpAddressWithSystemAssignedMSI": [ - "rgaci4217", - "aci5491" + "rgaci9114", + "aci579" ] }, "Variables": { - "ServicePrincipal": "39e3d217-cb72-4b90-8532-394a7e784d93", - "AADTenant": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "ServicePrincipal": "41966be6-c4d1-4730-bb67-7e697e5a6b57", + "AADTenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "SubscriptionId": "1c638cf4-608f-4ee6-b680-c329e824c3a8" } } \ No newline at end of file diff --git a/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithUserAssignedMSI.json b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithUserAssignedMSI.json index 93277ac88..13c6c26bb 100644 --- a/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithUserAssignedMSI.json +++ b/Tests/Fluent.Tests/SessionRecords/Fluent.Tests.ContainerInstanceTest/ContainerInstanceWithPublicIpAddressWithUserAssignedMSI.json @@ -1,23 +1,23 @@ { "Entries": [ { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JnYWNpNDk5MD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlZ3JvdXBzL3JnYWNpMTU5Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9730b0e6-8355-4ef2-a82d-aa309a3b59f1" + "522f708b-ad6d-4162-9421-a4cd50202b26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -34,16 +34,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "fd73d16f-85a2-45c2-9c54-ababd8b4a704" + "86ef598b-0fec-4d8d-9915-1656935a0336" ], "x-ms-correlation-request-id": [ - "fd73d16f-85a2-45c2-9c54-ababd8b4a704" + "86ef598b-0fec-4d8d-9915-1656935a0336" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222533Z:fd73d16f-85a2-45c2-9c54-ababd8b4a704" + "SOUTHEASTASIA:20190930T030252Z:86ef598b-0fec-4d8d-9915-1656935a0336" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +52,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:25:32 GMT" + "Mon, 30 Sep 2019 03:02:51 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "171" @@ -64,27 +67,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990\",\r\n \"name\": \"rgaci4990\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596\",\r\n \"name\": \"rgaci1596\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939?api-version=2018-11-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDU5Mzk/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389?api-version=2018-11-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDUzODk/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "02c61414-dd3c-40e5-ad9a-f11d03a9197b" + "e8159c57-4eee-4ca3-a826-f7f9cbb64f81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -101,7 +104,7 @@ "no-cache" ], "Location": [ - "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939" + "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -110,25 +113,1707 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" + ], + "x-ms-request-id": [ + "96875bb6-a554-4c1e-87a1-204e45a5c0aa" + ], + "x-ms-correlation-request-id": [ + "96875bb6-a554-4c1e-87a1-204e45a5c0aa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030257Z:96875bb6-a554-4c1e-87a1-204e45a5c0aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 03:02:56 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\",\r\n \"name\": \"msi-id5389\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Reader'&api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnUmVhZGVyJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4692b79-e182-4c36-a6ec-b2dbb888ae14" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "792b0b56-570e-49e8-bff8-afe4ece89a2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "11056056-051b-4226-89cc-eafe466d2746" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030257Z:11056056-051b-4226-89cc-eafe466d2746" + ], + "Date": [ + "Mon, 30 Sep 2019 03:02:56 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "615" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "51e99c6c-92a8-493b-8b67-d578f89dcc25" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "08479c13-1f53-4b38-a7f3-11988a383913" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "2b30131b-2339-47c9-afd2-256262fa67f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030257Z:2b30131b-2339-47c9-afd2-256262fa67f2" + ], + "Date": [ + "Mon, 30 Sep 2019 03:02:56 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1702976c-9430-47b6-9549-749863b23d8b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" ], "x-ms-request-id": [ - "fd33c943-a14b-40e6-a9bf-68a771997f1d" + "9af3802f-8b85-4078-bda6-3c4bf9746aec" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" ], "x-ms-correlation-request-id": [ - "fd33c943-a14b-40e6-a9bf-68a771997f1d" + "dbd9de79-b88b-4ce5-a767-b78b400d74a3" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222534Z:fd33c943-a14b-40e6-a9bf-68a771997f1d" + "SOUTHEASTASIA:20190930T030259Z:dbd9de79-b88b-4ce5-a767-b78b400d74a3" + ], + "Date": [ + "Mon, 30 Sep 2019 03:02:58 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c35fcaa-d5ad-41d0-bab6-77cb49d14de4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c35a2d85-91da-4826-8177-6a184615130e" ], "X-Content-Type-Options": [ "nosniff" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "82d0235f-3c0a-4114-8bb2-9b0aaf85c407" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030301Z:82d0235f-3c0a-4114-8bb2-9b0aaf85c407" + ], "Date": [ - "Wed, 19 Jun 2019 22:25:34 GMT" + "Mon, 30 Sep 2019 03:03:00 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "609b5a58-9d76-4c42-a742-ae425a74362b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "859d55a5-a0a8-43d3-aaa7-5ef95f7ba16a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "e21158bf-f7ca-4fc6-90e2-688444d0336f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030305Z:e21158bf-f7ca-4fc6-90e2-688444d0336f" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:05 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "47b98787-f03e-4cc8-8774-85ba67f9a1c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2c9f0626-61ee-4bd6-a21d-bcb374e1d957" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "41c17e79-071b-4f3f-89ee-7878e90d59ab" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030309Z:41c17e79-071b-4f3f-89ee-7878e90d59ab" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:09 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9079ab98-b4ed-4b7d-848a-bbd946b15377" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "71d299dd-da09-4a9e-a3dd-e73a441b6d74" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "9f083e82-561b-4a4d-8a61-fa4f46313af7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030315Z:9f083e82-561b-4a4d-8a61-fa4f46313af7" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:14 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73aea625-b8c1-40c9-9674-c905ff7be804" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fb0e62b3-5a35-4a79-8a85-56eb8876949c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "23b7dfe9-3b27-4520-8d5e-d006edf0d96a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030321Z:23b7dfe9-3b27-4520-8d5e-d006edf0d96a" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:21 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "867f80c8-ce2a-405e-a955-fe8c49a2fded" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8ec01360-d06c-4e1c-a6eb-8cb20c172a37" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "df7b6e80-6ce9-4525-8790-b67efe0407ec" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030328Z:df7b6e80-6ce9-4525-8790-b67efe0407ec" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:28 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e92a22fd-13c6-473e-a000-886b83927cd8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b50a15a-44a8-4fd7-8347-2accaa6ca411" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "eb142b41-5f44-40bc-9cdb-d97cc8a0c9d9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030337Z:eb142b41-5f44-40bc-9cdb-d97cc8a0c9d9" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:36 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d91d6365-7c70-4303-aa46-8acd41deebf0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e9206b4d-36e6-4c9f-8773-b7bf81dacb9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "8a6cf5d7-e345-431d-b485-19769b43081f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030346Z:8a6cf5d7-e345-431d-b485-19769b43081f" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:46 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c365ab4b-f8b8-4ca3-b1c0-8e990859233a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "98c6861e-900c-4507-b1cc-8d5effd45e8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "efda13d1-fa20-49bb-b367-d9ad8e27fcac" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030357Z:efda13d1-fa20-49bb-b367-d9ad8e27fcac" + ], + "Date": [ + "Mon, 30 Sep 2019 03:03:56 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fca29a6-9476-46fa-b652-8c28ee889d59" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cace0b28-3e1e-4800-896c-264ebcc31e64" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1185" + ], + "x-ms-correlation-request-id": [ + "06800f81-d09f-4ac1-aa88-b705ffd52d2f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030408Z:06800f81-d09f-4ac1-aa88-b705ffd52d2f" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:07 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6b14108392a5453eaead82d70c916520 does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9kMDZhZDA2ZC00ZmUzLTQ0ODktYjI0YS02NDc0ODA3ZmEyY2U/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ee9d7e4-a00f-434d-82b4-b4d5fde2bc64" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "3" + ], + "x-ms-request-id": [ + "42390604-0fce-452e-859d-dda19dcd32b8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1184" + ], + "x-ms-correlation-request-id": [ + "797f0322-b22a-42d3-9fb9-3f3f8c600827" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030423Z:797f0322-b22a-42d3-9fb9-3f3f8c600827" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:22 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "771" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596\",\r\n \"createdOn\": \"2019-09-30T03:04:20.7733972Z\",\r\n \"updatedOn\": \"2019-09-30T03:04:20.7733972Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"7d81e601-7c24-4238-8596-e28917ca4073\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/d06ad06d-4fe3-4489-b24a-6474807fa2ce\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d06ad06d-4fe3-4489-b24a-6474807fa2ce\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652?api-version=2018-11-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDg2NTI/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0550d8cb-84e9-40e1-b847-b3efb2cae4ba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1183" + ], + "x-ms-request-id": [ + "0ed2311d-ca6c-4973-8ea8-c1daf097fa96" + ], + "x-ms-correlation-request-id": [ + "0ed2311d-ca6c-4973-8ea8-c1daf097fa96" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030428Z:0ed2311d-ca6c-4973-8ea8-c1daf097fa96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:28 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\",\r\n \"name\": \"msi-id8652\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Contributor'&api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnQ29udHJpYnV0b3InJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4523ad82-15f6-4927-860d-1571c56d3eb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "c5e0c0ed-6b3c-4eb8-a3f8-624144aa57b9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "e1194967-e7f7-4fc1-bc50-f206809193fa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030428Z:e1194967-e7f7-4fc1-bc50-f206809193fa" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:28 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "832" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef677b7f-22eb-4e2a-aabd-5e76a9520c42" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a709d532-3bd6-4b85-a03a-61c4ecc40b03" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1182" + ], + "x-ms-correlation-request-id": [ + "293e614b-33fc-4434-a3a7-9396bce87886" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030429Z:293e614b-33fc-4434-a3a7-9396bce87886" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:29 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2456cc8f-0a23-45f1-9980-2d9280860004" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b4807ec2-b2af-45b7-bd06-7dd6bd2b130b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1181" + ], + "x-ms-correlation-request-id": [ + "a3ef0760-d2f5-404c-9d97-10b49e2cc0ca" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030430Z:a3ef0760-d2f5-404c-9d97-10b49e2cc0ca" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:30 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55b0ec72-baf8-41f3-9f85-f21cc363662d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c497753e-dd7e-4171-9a25-5332553121dd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1180" + ], + "x-ms-correlation-request-id": [ + "30d8b22a-dc7d-4988-a7ea-742864f9bf39" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030433Z:30d8b22a-dc7d-4988-a7ea-742864f9bf39" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:33 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe17fef1-9cea-41d8-bf8d-5f70bd71c666" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "6a2f80f5-6696-432c-93f0-36cccb854a97" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1179" + ], + "x-ms-correlation-request-id": [ + "441b1606-e2ee-4de0-978d-5ab340ae2e2a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030436Z:441b1606-e2ee-4de0-978d-5ab340ae2e2a" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:36 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4b47222-e260-49fb-a0ae-264e733f0a16" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa1f40ba-cdad-4023-92e1-e183865a63d7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1178" + ], + "x-ms-correlation-request-id": [ + "9b6e2cfc-567b-4073-8f1f-8d5d3fc9c2d8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030441Z:9b6e2cfc-567b-4073-8f1f-8d5d3fc9c2d8" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:40 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce1a7dca-39be-4586-8e81-a9ef584b7b2e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f16d1035-1c0b-42ad-b713-8706716707a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1177" + ], + "x-ms-correlation-request-id": [ + "67f9bffa-674e-40a3-ab2e-44971a2ba4ce" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030446Z:67f9bffa-674e-40a3-ab2e-44971a2ba4ce" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:46 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "163" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 + }, + { + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "065c532f-d876-4314-a14b-6262addd2006" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "32d9c544-b132-4bc4-b9f5-e67bba7a6db1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1176" + ], + "x-ms-correlation-request-id": [ + "c72da3ec-b716-4a40-b4ea-fd592305fc14" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030452Z:c72da3ec-b716-4a40-b4ea-fd592305fc14" + ], + "Date": [ + "Mon, 30 Sep 2019 03:04:52 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "431" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -137,27 +1822,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\",\r\n \"name\": \"msi-id5939\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Reader'&api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnUmVhZGVyJyZhcGktdmVyc2lvbj0yMDE4LTAxLTAxLXByZXZpZXc=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a64c3fbe-3a40-44cb-b58c-c4f60fa4eb14" + "86840fb8-2494-404d-ba6c-5c1b81cd0282" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" ] }, "ResponseHeaders": { @@ -167,11 +1858,8 @@ "Pragma": [ "no-cache" ], - "x-ms-request-charge": [ - "1" - ], "x-ms-request-id": [ - "b85db854-7b85-4518-b7bf-974565c8c7d4" + "f97bde86-63bc-40f8-a642-7fb61ea5a593" ], "X-Content-Type-Options": [ "nosniff" @@ -182,20 +1870,23 @@ "Set-Cookie": [ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1175" ], "x-ms-correlation-request-id": [ - "bcf73d69-54e5-4593-9d84-3e901497299a" + "b9dafce0-a76d-403d-9ddb-5324535d69ad" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222535Z:bcf73d69-54e5-4593-9d84-3e901497299a" + "SOUTHEASTASIA:20190930T030500Z:b9dafce0-a76d-403d-9ddb-5324535d69ad" ], "Date": [ - "Wed, 19 Jun 2019 22:25:34 GMT" + "Mon, 30 Sep 2019 03:04:59 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "615" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,27 +1895,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": [],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:35.7424745Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/a82c3cd3-2cf0-4e04-86a7-ca6022075154?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9hODJjM2NkMy0yY2YwLTRlMDQtODZhNy1jYTYwMjIwNzUxNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "37e943aa-d4e8-40c8-be2c-86261332b2f4" + "b51f974e-3c38-49da-a230-1e635fc181dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -241,7 +1932,7 @@ "no-cache" ], "x-ms-request-id": [ - "666c87bf-2f33-47cc-8dce-6e283793f1c0" + "a47b784e-525a-4d85-90dd-6baacb888f4d" ], "X-Content-Type-Options": [ "nosniff" @@ -253,16 +1944,19 @@ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1174" ], "x-ms-correlation-request-id": [ - "66a5d59a-2809-4b72-bcfb-6cfed07981b8" + "d9d71ac9-dd71-455a-bbaf-3fdc2d11797e" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222535Z:66a5d59a-2809-4b72-bcfb-6cfed07981b8" + "SOUTHEASTASIA:20190930T030508Z:d9d71ac9-dd71-455a-bbaf-3fdc2d11797e" ], "Date": [ - "Wed, 19 Jun 2019 22:25:35 GMT" + "Mon, 30 Sep 2019 03:05:08 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "163" @@ -274,27 +1968,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 2071a2c24888416eb5b35850dc57f8b0 does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/a82c3cd3-2cf0-4e04-86a7-ca6022075154?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9hODJjM2NkMy0yY2YwLTRlMDQtODZhNy1jYTYwMjIwNzUxNTQ/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3b2c13fb-1d3d-4cdf-b3e5-6638435b6e3a" + "95387d75-f0db-4fec-8475-96de259f7134" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -310,11 +2004,8 @@ "Pragma": [ "no-cache" ], - "x-ms-request-charge": [ - "2" - ], "x-ms-request-id": [ - "e2da6549-27aa-44cd-9000-73d6282cea1b" + "1f6c2679-991b-4a80-9438-f60622e9b399" ], "X-Content-Type-Options": [ "nosniff" @@ -326,19 +2017,22 @@ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1173" ], "x-ms-correlation-request-id": [ - "150c84bf-df9e-4395-acda-907d61eef754" + "908b60dd-2cf2-4441-a779-971172943fbb" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222538Z:150c84bf-df9e-4395-acda-907d61eef754" + "SOUTHEASTASIA:20190930T030518Z:908b60dd-2cf2-4441-a779-971172943fbb" ], "Date": [ - "Wed, 19 Jun 2019 22:25:38 GMT" + "Mon, 30 Sep 2019 03:05:17 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "771" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -347,33 +2041,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990\",\r\n \"createdOn\": \"2019-06-19T22:25:36.7651861Z\",\r\n \"updatedOn\": \"2019-06-19T22:25:36.7651861Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/a82c3cd3-2cf0-4e04-86a7-ca6022075154\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a82c3cd3-2cf0-4e04-86a7-ca6022075154\"\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935?api-version=2018-11-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hbmFnZWRJZGVudGl0eS91c2VyQXNzaWduZWRJZGVudGl0aWVzL21zaS1pZDE5MzU/YXBpLXZlcnNpb249MjAxOC0xMS0zMA==", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "83951db2-643a-437e-a106-b1bb37fde210" + "1f43fdcc-fb13-43af-b1b7-b5677d24b4f7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Msi.Fluent.ManagedServiceIdentityClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "43" + "254" ] }, "ResponseHeaders": { @@ -383,35 +2077,35 @@ "Pragma": [ "no-cache" ], - "Location": [ - "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935" + "x-ms-request-id": [ + "a6b5ecf5-196e-427d-a1c6-4c1e7b126e3c" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-HTTPAPI/2.0" + "Set-Cookie": [ + "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" - ], - "x-ms-request-id": [ - "b6f2b625-1886-490c-bc85-1fa263605794" + "1172" ], "x-ms-correlation-request-id": [ - "b6f2b625-1886-490c-bc85-1fa263605794" + "2e375a87-a61b-45db-9c7c-98ae3d7dbf54" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222540Z:b6f2b625-1886-490c-bc85-1fa263605794" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20190930T030528Z:2e375a87-a61b-45db-9c7c-98ae3d7dbf54" ], "Date": [ - "Wed, 19 Jun 2019 22:25:39 GMT" + "Mon, 30 Sep 2019 03:05:27 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "431" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,27 +2114,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\",\r\n \"name\": \"msi-id1935\",\r\n \"type\": \"Microsoft.ManagedIdentity/userAssignedIdentities\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Contributor'&api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnQ29udHJpYnV0b3InJmFwaS12ZXJzaW9uPTIwMTgtMDEtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "373495a9-460e-47fb-9872-bdb4112ccb84" + "006492df-1674-435a-907f-8ba5b2bb80a0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "254" ] }, "ResponseHeaders": { @@ -450,11 +2150,8 @@ "Pragma": [ "no-cache" ], - "x-ms-request-charge": [ - "1" - ], "x-ms-request-id": [ - "8318263b-2ded-4b95-b78b-772cafd4e568" + "998b660e-3858-47e9-b902-4d553b6e2203" ], "X-Content-Type-Options": [ "nosniff" @@ -465,20 +2162,23 @@ "Set-Cookie": [ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1171" ], "x-ms-correlation-request-id": [ - "b0cae537-1242-44cb-9d15-1f55fe37785d" + "a166dd62-a3e0-4c10-a991-4249a53ca177" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222540Z:b0cae537-1242-44cb-9d15-1f55fe37785d" + "SOUTHEASTASIA:20190930T030540Z:a166dd62-a3e0-4c10-a991-4249a53ca177" ], "Date": [ - "Wed, 19 Jun 2019 22:25:40 GMT" + "Mon, 30 Sep 2019 03:05:40 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "832" + "163" ], "Content-Type": [ "application/json; charset=utf-8" @@ -487,27 +2187,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\",\r\n \"Microsoft.Blueprint/blueprintAssignments/write\",\r\n \"Microsoft.Blueprint/blueprintAssignments/delete\"\r\n ],\r\n \"dataActions\": [],\r\n \"notDataActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-02-02T21:55:09.8806423Z\",\r\n \"updatedOn\": \"2019-02-05T21:24:38.458061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/928adfc2-50b7-4fe8-a903-676b07032a15?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy85MjhhZGZjMi01MGI3LTRmZTgtYTkwMy02NzZiMDcwMzJhMTU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2b014ff5-aa87-4f6a-9a2e-02c6f026da90" + "bab326e5-b5bc-4df0-9f08-8f2f3fad2112" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -524,7 +2224,7 @@ "no-cache" ], "x-ms-request-id": [ - "e5ec491c-d452-4377-a456-15a4af83d4bf" + "f4cf08d0-c468-406d-ab45-11f60bca35d2" ], "X-Content-Type-Options": [ "nosniff" @@ -536,16 +2236,19 @@ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1170" ], "x-ms-correlation-request-id": [ - "d9d17de7-1192-47bd-a87a-0e71f985f48d" + "86fb0c86-99a7-4aa3-bb01-154b65990605" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222541Z:d9d17de7-1192-47bd-a87a-0e71f985f48d" + "SOUTHEASTASIA:20190930T030552Z:86fb0c86-99a7-4aa3-bb01-154b65990605" ], "Date": [ - "Wed, 19 Jun 2019 22:25:40 GMT" + "Mon, 30 Sep 2019 03:05:52 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "163" @@ -557,27 +2260,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal b6640443158348fe984d8a221df8cfac does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/928adfc2-50b7-4fe8-a903-676b07032a15?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy85MjhhZGZjMi01MGI3LTRmZTgtYTkwMy02NzZiMDcwMzJhMTU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5126a187-732d-4789-801c-a1d17dab36dd" + "7d793843-1534-41d2-9f9a-17a2927a3711" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,7 +2297,7 @@ "no-cache" ], "x-ms-request-id": [ - "2c360cab-30dc-49f0-acb0-6f6062c41ac3" + "f97f1ff1-ad9b-4fd2-8bbb-02a30ee7cf6f" ], "X-Content-Type-Options": [ "nosniff" @@ -606,16 +2309,19 @@ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1169" ], "x-ms-correlation-request-id": [ - "aea9ba33-7283-46aa-9668-3dc1dca2ae9c" + "639c518e-919a-4a75-a968-57631841cb6c" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222542Z:aea9ba33-7283-46aa-9668-3dc1dca2ae9c" + "SOUTHEASTASIA:20190930T030606Z:639c518e-919a-4a75-a968-57631841cb6c" ], "Date": [ - "Wed, 19 Jun 2019 22:25:42 GMT" + "Mon, 30 Sep 2019 03:06:05 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "163" @@ -627,27 +2333,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal b6640443158348fe984d8a221df8cfac does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal 6fb24ab87837414b8a8521612116d8ae does not exist in the directory 72f988bf-86f1-41af-91ab-2d7cd011db47.\"\r\n }\r\n}", "StatusCode": 400 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/928adfc2-50b7-4fe8-a903-676b07032a15?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy85MjhhZGZjMi01MGI3LTRmZTgtYTkwMy02NzZiMDcwMzJhMTU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "//subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72?api-version=2018-01-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzFjNjM4Y2Y0LTYwOGYtNGVlNi1iNjgwLWMzMjllODI0YzNhOC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTE1OTYvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy8xYTMwNWQ2Mi1hODA5LTQ1YmItYTM4Ny1kMThkOGE1OTNlNzI/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b4e0431-0aa3-4aa5-bbf6-c5f95dcb3415" + "379f6843-a4a1-4862-804b-ac3a0ce686fa" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -663,8 +2369,11 @@ "Pragma": [ "no-cache" ], + "x-ms-request-charge": [ + "2" + ], "x-ms-request-id": [ - "cb2a8c40-8ffd-4258-8d85-2362729e656e" + "385e97fe-c7b4-4782-a26d-293e53d9e110" ], "X-Content-Type-Options": [ "nosniff" @@ -676,19 +2385,22 @@ "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1168" ], "x-ms-correlation-request-id": [ - "103b9523-0476-4610-ab98-e4764102a462" + "5214f7ec-9730-4592-a6a5-7b3f32df9e93" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222545Z:103b9523-0476-4610-ab98-e4764102a462" + "SOUTHEASTASIA:20190930T030622Z:5214f7ec-9730-4592-a6a5-7b3f32df9e93" ], "Date": [ - "Wed, 19 Jun 2019 22:25:44 GMT" + "Mon, 30 Sep 2019 03:06:21 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "163" + "771" ], "Content-Type": [ "application/json; charset=utf-8" @@ -697,33 +2409,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"PrincipalNotFound\",\r\n \"message\": \"Principal b6640443158348fe984d8a221df8cfac does not exist in the directory 54826b22-38d6-4fb2-bad9-b7b93a3e9c5a.\"\r\n }\r\n}", - "StatusCode": 400 + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596\",\r\n \"createdOn\": \"2019-09-30T03:06:20.2197794Z\",\r\n \"updatedOn\": \"2019-09-30T03:06:20.2197794Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"7d81e601-7c24-4238-8596-e28917ca4073\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.Authorization/roleAssignments/1a305d62-a809-45bb-a387-d18d8a593e72\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1a305d62-a809-45bb-a387-d18d8a593e72\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "//subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/928adfc2-50b7-4fe8-a903-676b07032a15?api-version=2018-01-01-preview", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzBiMWY2NDcxLTFiZjAtNGRkYS1hZWMzLWNiOTI3MmYwOTU5MC9yZXNvdXJjZUdyb3Vwcy9yZ2FjaTQ5OTAvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy85MjhhZGZjMi01MGI3LTRmZTgtYTkwMy02NzZiMDcwMzJhMTU/YXBpLXZlcnNpb249MjAxOC0wMS0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\"\r\n }\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {},\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\",\r\n \"secureValue\": \"securedValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "18f9627e-b3fb-4ff1-be2e-157d70cdb06f" + "87ef7c17-6739-4780-83f1-5a14800ea910" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.Management.Graph.RBAC.Fluent.AuthorizationManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "254" + "2013" ] }, "ResponseHeaders": { @@ -733,35 +2445,41 @@ "Pragma": [ "no-cache" ], - "x-ms-request-charge": [ - "2" - ], - "x-ms-request-id": [ - "34b36e5b-786f-4917-9954-d133cee8b75f" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/5663a26e-d36c-4e31-8369-d49046a7badc?api-version=2018-06-01" ], - "X-Content-Type-Options": [ - "nosniff" + "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ + "99" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ + "292" ], - "Set-Cookie": [ - "x-ms-gateway-slice=Production; path=/; secure; HttpOnly" + "x-ms-request-id": [ + "eastus:5663a26e-d36c-4e31-8369-d49046a7badc" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "30d249da-7be9-4718-8de5-3b69c50a10e4" + "a2ff9846-3d8e-42dc-a18c-3cd34d8c6dd0" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222549Z:30d249da-7be9-4718-8de5-3b69c50a10e4" + "SOUTHEASTASIA:20190930T030655Z:a2ff9846-3d8e-42dc-a18c-3cd34d8c6dd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:25:49 GMT" + "Mon, 30 Sep 2019 03:06:54 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "771" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -770,33 +2488,33 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990\",\r\n \"createdOn\": \"2019-06-19T22:25:48.4617548Z\",\r\n \"updatedOn\": \"2019-06-19T22:25:48.4617548Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"1c93a1ad-59cf-42fc-b6ce-0f5ffd464a70\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.Authorization/roleAssignments/928adfc2-50b7-4fe8-a903-676b07032a15\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"928adfc2-50b7-4fe8-a903-676b07032a15\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {},\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\",\r\n \"secureValue\": \"securedValue1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {},\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {}\r\n }\r\n },\r\n \"properties\": {\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"type\": \"Public\",\r\n \"ip\": \"52.191.239.59\",\r\n \"dnsNameLabel\": \"aci9543\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "187b5c5e-0255-44a6-9838-d057bdfcc00e" + "71d92818-e1cf-4515-a948-0658d8f12a94" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2013" + "1740" ] }, "ResponseHeaders": { @@ -807,25 +2525,25 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerInstance/locations/eastus/operations/e4c407cc-47ac-4460-a426-a55b47152461?api-version=2018-06-01" + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/c63ff728-9da5-46e9-9a9e-44573d1741ce?api-version=2018-06-01" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt5m": [ "99" ], "x-ms-ratelimit-remaining-subscription-resource-requests-pt1h": [ - "297" + "295" ], "x-ms-request-id": [ - "eastus:e4c407cc-47ac-4460-a426-a55b47152461" + "eastus:c63ff728-9da5-46e9-9a9e-44573d1741ce" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "06b7e966-66da-405f-b3f2-843fbbcbb7e7" + "81bb522b-e33e-4f99-a9e0-b4849a5b3f2e" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222555Z:06b7e966-66da-405f-b3f2-843fbbcbb7e7" + "SOUTHEASTASIA:20190930T030809Z:81bb522b-e33e-4f99-a9e0-b4849a5b3f2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,10 +2552,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:25:54 GMT" + "Mon, 30 Sep 2019 03:08:09 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "1650" + "1812" ], "Content-Type": [ "application/json; charset=utf-8" @@ -846,21 +2567,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Pending\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Waiting\",\r\n \"detailStatus\": \"ContainerCreating\"\r\n }\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Pending\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerInstance/locations/eastus/operations/e4c407cc-47ac-4460-a426-a55b47152461?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2U0YzQwN2NjLTQ3YWMtNDQ2MC1hNDI2LWE1NWI0NzE1MjQ2MT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/5663a26e-d36c-4e31-8369-d49046a7badc?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zLzU2NjNhMjZlLWQzNmMtNGUzMS04MzY5LWQ0OTA0NmE3YmFkYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -874,16 +2595,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:93b345c7-f124-4bf0-b75a-9115bd5e3f15" + "eastus:5f86cee7-673d-4e0d-98e2-cc63fb3cf36e" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "359fcd96-3cd7-4de0-9c6f-d5f7ac6f297d" + "e4649b62-b458-4dd4-bb3e-f7e99ce33860" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222626Z:359fcd96-3cd7-4de0-9c6f-d5f7ac6f297d" + "SOUTHEASTASIA:20190930T030726Z:e4649b62-b458-4dd4-bb3e-f7e99ce33860" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -892,7 +2613,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:25 GMT" + "Mon, 30 Sep 2019 03:07:26 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "236" @@ -904,21 +2628,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2019-06-19T22:25:55.1378956Z\",\r\n \"properties\": {\r\n \"events\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"status\": \"Pending\",\r\n \"startTime\": \"2019-09-30T03:06:54.8305624Z\",\r\n \"properties\": {\r\n \"events\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/providers/Microsoft.ContainerInstance/locations/eastus/operations/e4c407cc-47ac-4460-a426-a55b47152461?api-version=2018-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2U0YzQwN2NjLTQ3YWMtNDQ2MC1hNDI2LWE1NWI0NzE1MjQ2MT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/5663a26e-d36c-4e31-8369-d49046a7badc?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zLzU2NjNhMjZlLWQzNmMtNGUzMS04MzY5LWQ0OTA0NmE3YmFkYz9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -932,16 +2656,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:de463d77-c178-451b-aaf9-f01c1086ac34" + "eastus:e1f8e6d9-8942-4560-a4d8-3c2dbb00b09c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "63e84d74-5dd5-4962-8881-edea0cae94a9" + "d0217c72-d57b-49a6-b74d-81eb798e6395" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222656Z:63e84d74-5dd5-4962-8881-edea0cae94a9" + "SOUTHEASTASIA:20190930T030757Z:d0217c72-d57b-49a6-b74d-81eb798e6395" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -950,7 +2674,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:56 GMT" + "Mon, 30 Sep 2019 03:07:56 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "1517" @@ -962,21 +2689,21 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-06-19T22:25:55.1378956Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T03:06:54.8305624Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -990,16 +2717,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:89d86428-1fa3-4f1a-844d-78a3df9d9220" + "eastus:823d1bb9-a873-4a6a-b6b2-19790d479f17" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "f532bbe6-53cb-4e5d-a0c3-012c927fd7b8" + "ba98f342-3c42-456d-bfd9-4ec141176de1" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222656Z:f532bbe6-53cb-4e5d-a0c3-012c927fd7b8" + "SOUTHEASTASIA:20190930T030758Z:ba98f342-3c42-456d-bfd9-4ec141176de1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1008,7 +2735,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:56 GMT" + "Mon, 30 Sep 2019 03:07:58 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "3198" @@ -1020,27 +2750,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aed26f1-8e02-44a7-8c8e-998fa3564844" + "544a8ab7-b489-4231-b1a8-360c0879149b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1054,16 +2784,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:1fead77a-7273-4fe2-8dcc-d0e0d608350b" + "eastus:fd55f865-886b-46f1-a29b-38f5f2e3ae64" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "43d804ff-9a17-419c-a2cb-03a9fb8c3c9d" + "98b015c0-615a-4dea-a9cc-e1dc5486182e" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222657Z:43d804ff-9a17-419c-a2cb-03a9fb8c3c9d" + "SOUTHEASTASIA:20190930T030759Z:98b015c0-615a-4dea-a9cc-e1dc5486182e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1072,7 +2802,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:57 GMT" + "Mon, 30 Sep 2019 03:07:59 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "3198" @@ -1084,27 +2817,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09ffafb7-9480-484e-a823-5f94d8be7bf8" + "1b71bb64-35f9-4d41-8bdd-f97b0aff0223" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1118,16 +2851,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:b12d3dd9-bb80-498a-b8d6-a7be1c489b34" + "eastus:af8033f7-098e-41c7-81eb-e4dc680b10b5" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "55336094-0921-4a9d-a629-15099a55b26c" + "94c7c2a1-471e-4b1b-aa95-7012373338f6" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222657Z:55336094-0921-4a9d-a629-15099a55b26c" + "SOUTHEASTASIA:20190930T030800Z:94c7c2a1-471e-4b1b-aa95-7012373338f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1136,7 +2869,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:57 GMT" + "Mon, 30 Sep 2019 03:07:59 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "3198" @@ -1148,27 +2884,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa3bfba2-4a90-4bd9-9ad7-61466ed733f5" + "54a94b48-6677-4396-87de-44b8f8764f6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1182,16 +2918,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:5db8c443-031b-470e-8f6a-427810e4f09b" + "eastus:48a3dae9-1f57-4462-97f0-e429029c2638" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "3c65573a-316e-434b-9651-a89c212e8947" + "cfa0602e-f712-4a75-930d-f102edd922df" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222657Z:3c65573a-316e-434b-9651-a89c212e8947" + "SOUTHEASTASIA:20190930T030800Z:cfa0602e-f712-4a75-930d-f102edd922df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +2936,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:57 GMT" + "Mon, 30 Sep 2019 03:08:00 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "3198" @@ -1212,27 +2951,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a6e427c-1587-4e91-addd-cac8e030deca" + "c55387bf-c59d-43d8-8c14-ed1a7f25f917" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1246,16 +2985,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:5235da7c-57e6-450d-b7b1-a572634823f6" + "eastus:5fe8dadf-c5cf-4009-8c73-8974f9bcf24b" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "df54f1e7-32d7-49f4-a222-f66ee5774bc1" + "3b8d2ea2-b25f-4c5c-8338-312802fe2dc9" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222658Z:df54f1e7-32d7-49f4-a222-f66ee5774bc1" + "SOUTHEASTASIA:20190930T030801Z:3b8d2ea2-b25f-4c5c-8338-312802fe2dc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1264,7 +3003,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:57 GMT" + "Mon, 30 Sep 2019 03:08:00 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "3198" @@ -1276,27 +3018,88 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:a1f15709-b215-478e-b5f7-837fabedb96c" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "c20db508-f196-4761-b4cf-2c1b8d7185c6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030840Z:c20db508-f196-4761-b4cf-2c1b8d7185c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 03:08:39 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "3151" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:08:08Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:08:09Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35d21178-3492-4f65-8462-a701f87a4349" + "6fa6b81e-0a21-416d-acc2-9cb749387d26" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1310,16 +3113,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:fe201a9a-2f39-422c-a74a-82b23f6c9d87" + "eastus:7e5df189-d6fb-4875-8f80-22baae4b7864" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11988" ], "x-ms-correlation-request-id": [ - "7c050c77-4245-482e-ab59-997b45346307" + "342e4177-9b94-4a07-b2d0-e0561b77b82b" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222659Z:7c050c77-4245-482e-ab59-997b45346307" + "SOUTHEASTASIA:20190930T030841Z:342e4177-9b94-4a07-b2d0-e0561b77b82b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1328,10 +3131,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:59 GMT" + "Mon, 30 Sep 2019 03:08:40 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "3198" + "3151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1340,27 +3146,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:08:08Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:08:09Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTEwLTAx", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcz9hcGktdmVyc2lvbj0yMDE4LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e99970d6-9be4-4850-bc0e-fb4bcb747bb8" + "727fe862-5f6d-4898-ade7-05bc09f0885f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1374,16 +3180,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:bec78e02-56e6-46c9-be57-610116c51401" + "eastus:2c61b4d1-30ec-41c1-9e68-73c88eea1a02" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "640e53eb-f0d8-4c51-a9de-a100503e630c" + "5d266a37-089a-4cf2-878a-8c060217c149" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222657Z:640e53eb-f0d8-4c51-a9de-a100503e630c" + "SOUTHEASTASIA:20190930T030759Z:5d266a37-089a-4cf2-878a-8c060217c149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +3198,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:57 GMT" + "Mon, 30 Sep 2019 03:07:59 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "1617" @@ -1404,7 +3213,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ]\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag1\": \"value1\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -1414,17 +3223,17 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7752a96f-ec66-4354-aeaa-93750d066b2c" + "c7527865-744d-4582-8007-4a350c930ea7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1438,16 +3247,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus:daa05d0f-8f3a-4c11-8c87-97a351aac765" + "southeastasia:3c29a158-412e-4d68-ba92-b414d5d5950e" ], "x-ms-ratelimit-remaining-tenant-reads": [ "11999" ], "x-ms-correlation-request-id": [ - "f72c7b60-b743-48d8-be6b-94a612b2d8c2" + "a5edc31f-299e-4655-add8-1421a01d8a6e" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222658Z:f72c7b60-b743-48d8-be6b-94a612b2d8c2" + "SOUTHEASTASIA:20190930T030801Z:a5edc31f-299e-4655-add8-1421a01d8a6e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1456,10 +3265,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:58 GMT" + "Mon, 30 Sep 2019 03:08:00 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "6734" + "7905" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1468,27 +3280,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Register Microsoft Container Instance\",\r\n \"description\": \"Registers the subscription for the container instance resource provider and enables the creation of container groups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Groups\",\r\n \"description\": \"Get all container goups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Create or update Container Group\",\r\n \"description\": \"Create or update a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Delete Container Group\",\r\n \"description\": \"Delete the specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/restart/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Restart Container Group\",\r\n \"description\": \"Restarts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Stop Container Group\",\r\n \"description\": \"Stops a specific container group. Compute resources will be deallocated and billing will stop.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Start Container Group\",\r\n \"description\": \"Starts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/logs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Logs\",\r\n \"description\": \"Get logs for a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/exec/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Exec Into a Container\",\r\n \"description\": \"Exec into a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/cachedImages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Cached Images\",\r\n \"operation\": \"Get cached images.\",\r\n \"description\": \"Gets the cached images for the subscription in a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/capabilities/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Capabilities\",\r\n \"operation\": \"Get Capabilities\",\r\n \"description\": \"Get the capabilities for a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/usages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Usages\",\r\n \"operation\": \"Get Regional Usage\",\r\n \"description\": \"Get the usage for a specific region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read container group metric definitions\",\r\n \"description\": \"Gets the available metrics for container group.\"\r\n },\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"CpuUsage\",\r\n \"displayName\": \"CPU Usage\",\r\n \"displayDescription\": \"CPU usage on all cores in millicores.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"MemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Total memory usage in byte.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NetworkBytesReceivedPerSecond\",\r\n \"displayName\": \"Network Bytes Received Per Second\",\r\n \"displayDescription\": \"The network bytes received per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NetworkBytesTransmittedPerSecond\",\r\n \"displayName\": \"Network Bytes Transmitted Per Second\",\r\n \"displayDescription\": \"The network bytes transmitted per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Write Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Delete virtual network or subnet notification\",\r\n \"operation\": \"Delete virtual network or subnet notification\",\r\n \"description\": \"Notifies Microsoft.ContainerInstance that virtual network or subnet is being deleted.\"\r\n },\r\n \"origin\": \"User\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Register Microsoft Container Instance\",\r\n \"description\": \"Registers the subscription for the container instance resource provider and enables the creation of container groups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Groups\",\r\n \"description\": \"Get all container goups.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Create or update Container Group\",\r\n \"description\": \"Create or update a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Delete Container Group\",\r\n \"description\": \"Delete the specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/restart/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Restart Container Group\",\r\n \"description\": \"Restarts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Stop Container Group\",\r\n \"description\": \"Stops a specific container group. Compute resources will be deallocated and billing will stop.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Start Container Group\",\r\n \"description\": \"Starts a specific container group.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/logs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Get Container Logs\",\r\n \"description\": \"Get logs for a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/containers/exec/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Exec Into a Container\",\r\n \"description\": \"Exec into a specific container.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/operationResults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Async operation result\",\r\n \"description\": \"Get async operation result\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/cachedImages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Cached Images\",\r\n \"operation\": \"Get cached images.\",\r\n \"description\": \"Gets the cached images for the subscription in a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/capabilities/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Capabilities\",\r\n \"operation\": \"Get Capabilities\",\r\n \"description\": \"Get the capabilities for a region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/usages/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Usages\",\r\n \"operation\": \"Get Regional Usage\",\r\n \"description\": \"Get the usage for a specific region.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read container group metric definitions\",\r\n \"description\": \"Gets the available metrics for container group.\"\r\n },\r\n \"origin\": \"System\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"CpuUsage\",\r\n \"displayName\": \"CPU Usage\",\r\n \"displayDescription\": \"CPU usage on all cores in millicores.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"MemoryUsage\",\r\n \"displayName\": \"Memory Usage\",\r\n \"displayDescription\": \"Total memory usage in byte.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false,\r\n \"dimensions\": [\r\n {\r\n \"name\": \"containerName\",\r\n \"displayName\": \"Container Name\",\r\n \"toBeExportedForShoebox\": true\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"NetworkBytesReceivedPerSecond\",\r\n \"displayName\": \"Network Bytes Received Per Second\",\r\n \"displayDescription\": \"The network bytes received per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"NetworkBytesTransmittedPerSecond\",\r\n \"displayName\": \"Network Bytes Transmitted Per Second\",\r\n \"displayDescription\": \"The network bytes transmitted per second.\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedAggregationTypes\": [\r\n \"Maximum\",\r\n \"Minimum\",\r\n \"Average\"\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"PT1D\"\r\n ],\r\n \"enableRegionalMdmAccount\": true,\r\n \"sourceMdmAccount\": \"MicrosoftContainerInstanceShoebox\",\r\n \"sourceMdmNamespace\": \"AzureMonitoringMetrics\",\r\n \"fillGapWithZero\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Read Diagnostic Setting\",\r\n \"description\": \"Gets the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/containerGroups/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Container Group\",\r\n \"operation\": \"Write Diagnostic Setting\",\r\n \"description\": \"Creates or updates the diagnostic setting for the container group.\"\r\n },\r\n \"origin\": \"System\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/deleteVirtualNetworkOrSubnets/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Delete virtual network or subnet notification\",\r\n \"operation\": \"Delete virtual network or subnet notification\",\r\n \"description\": \"Notifies Microsoft.ContainerInstance that virtual network or subnet is being deleted.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/locations/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Read operations.\",\r\n \"description\": \"List the operations for Azure Container Instance service.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Resource provider operations.\",\r\n \"operation\": \"Read operations.\",\r\n \"description\": \"List the operations for Azure Container Instance service.\"\r\n },\r\n \"origin\": \"User\"\r\n },\r\n {\r\n \"name\": \"Microsoft.ContainerInstance/serviceassociationlinks/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Container Instance\",\r\n \"resource\": \"Service Association Link.\",\r\n \"operation\": \"Delete Service Association Link.\",\r\n \"description\": \"Delete the service association link created by azure container instance resource provider on a subnet.\"\r\n },\r\n \"origin\": \"User\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "29fdafa6-d39e-43ec-ac03-69909a7ac048" + "1ba8c4dd-5f60-4a90-9cbf-316cc37df0fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,16 +3320,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "eastus:3b95ab55-127f-452f-b7ef-04f69ca42105" + "eastus:1de13b39-dbf3-4a6d-8ca1-0f84f71c69be" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], "x-ms-correlation-request-id": [ - "83028333-f8e1-4809-82d4-4f883a564e48" + "61e3ea21-d9b8-4652-9af6-686cb5ae9649" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222659Z:83028333-f8e1-4809-82d4-4f883a564e48" + "SOUTHEASTASIA:20190930T030803Z:61e3ea21-d9b8-4652-9af6-686cb5ae9649" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1526,7 +3338,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:26:59 GMT" + "Mon, 30 Sep 2019 03:08:03 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ "3198" @@ -1538,27 +3353,88 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:03Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:33Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:07:47Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:07:47Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/providers/Microsoft.ContainerInstance/locations/eastus/operations/c63ff728-9da5-46e9-9a9e-44573d1741ce?api-version=2018-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29udGFpbmVySW5zdGFuY2UvbG9jYXRpb25zL2Vhc3R1cy9vcGVyYXRpb25zL2M2M2ZmNzI4LTlkYTUtNDZlOS05YTllLTQ0NTczZDE3NDFjZT9hcGktdmVyc2lvbj0yMDE4LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28008.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18362.", + "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-request-id": [ + "eastus:b3a34c00-aaee-4a7e-bcba-b2748208a88b" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "fa448238-563b-41a0-9e5a-c97d11367301" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20190930T030840Z:fa448238-563b-41a0-9e5a-c97d11367301" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 30 Sep 2019 03:08:39 GMT" + ], + "Connection": [ + "keep-alive" + ], + "Content-Length": [ + "1516" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2019-09-30T03:08:07.461173Z\",\r\n \"properties\": {\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615?api-version=2018-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlR3JvdXBzL3JnYWNpNDk5MC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2kxNjE1P2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543?api-version=2018-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlR3JvdXBzL3JnYWNpMTU5Ni9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbnRhaW5lckluc3RhbmNlL2NvbnRhaW5lckdyb3Vwcy9hY2k5NTQzP2FwaS12ZXJzaW9uPTIwMTgtMTAtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56b87a56-a603-4b26-a0d9-9a91028ad8b3" + "c9cf6a4e-2628-4d94-9eda-6200d3705cff" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerInstanceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1578,16 +3454,16 @@ "298" ], "x-ms-request-id": [ - "eastus:de148071-05fe-49f6-af93-3ed36222574b" + "eastus:857652a8-8803-4df2-97f3-eb02c6cccf76" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "504a8357-a710-4173-8296-b69db7af5614" + "701c89a0-f4bb-46f0-a7ef-f485ac191c1d" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222700Z:504a8357-a710-4173-8296-b69db7af5614" + "SOUTHEASTASIA:20190930T030843Z:701c89a0-f4bb-46f0-a7ef-f485ac191c1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,10 +3472,13 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:27:00 GMT" + "Mon, 30 Sep 2019 03:08:42 GMT" + ], + "Connection": [ + "keep-alive" ], "Content-Length": [ - "3198" + "3151" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1608,27 +3487,27 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV1\",\r\n \"value\": \"value1\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:38Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:25:59Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:28Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [\r\n {\r\n \"name\": \"ENV2\"\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-06-19T22:26:48Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:38Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:43Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"lastTimestamp\": \"2019-06-19T22:26:48Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.224.200.71\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci1615\",\r\n \"fqdn\": \"aci1615.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5939\": {\r\n \"principalId\": \"2071a2c2-4888-416e-b5b3-5850dc57f8b0\",\r\n \"clientId\": \"f3e03c43-8c74-4d46-a3c3-3719f15234f6\"\r\n },\r\n \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id1935\": {\r\n \"principalId\": \"b6640443-1583-48fe-984d-8a221df8cfac\",\r\n \"clientId\": \"3087c39d-e07e-4e44-9890-f4a03a62f113\"\r\n }\r\n },\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/rgaci4990/providers/Microsoft.ContainerInstance/containerGroups/aci1615\",\r\n \"name\": \"aci1615\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"containers\": [\r\n {\r\n \"name\": \"tomcat\",\r\n \"properties\": {\r\n \"image\": \"tomcat\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:08:08Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"tomcat\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"nginx\",\r\n \"properties\": {\r\n \"image\": \"nginx\",\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"environmentVariables\": [],\r\n \"instanceView\": {\r\n \"restartCount\": 0,\r\n \"currentState\": {\r\n \"state\": \"Running\",\r\n \"startTime\": \"2019-09-30T03:08:09Z\",\r\n \"detailStatus\": \"\"\r\n },\r\n \"events\": [\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:08Z\",\r\n \"name\": \"Pulling\",\r\n \"message\": \"pulling image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Pulled\",\r\n \"message\": \"Successfully pulled image \\\"nginx\\\"\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Created\",\r\n \"message\": \"Created container\",\r\n \"type\": \"Normal\"\r\n },\r\n {\r\n \"count\": 1,\r\n \"firstTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"lastTimestamp\": \"2019-09-30T03:08:09Z\",\r\n \"name\": \"Started\",\r\n \"message\": \"Started container\",\r\n \"type\": \"Normal\"\r\n }\r\n ]\r\n },\r\n \"resources\": {\r\n \"requests\": {\r\n \"memoryInGB\": 1.5,\r\n \"cpu\": 1.0\r\n }\r\n }\r\n }\r\n }\r\n ],\r\n \"restartPolicy\": \"Never\",\r\n \"ipAddress\": {\r\n \"ports\": [\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 8080\r\n },\r\n {\r\n \"protocol\": \"TCP\",\r\n \"port\": 80\r\n }\r\n ],\r\n \"ip\": \"52.191.239.59\",\r\n \"type\": \"Public\",\r\n \"dnsNameLabel\": \"aci9543\",\r\n \"fqdn\": \"aci9543.eastus.azurecontainer.io\"\r\n },\r\n \"osType\": \"Linux\",\r\n \"volumes\": [\r\n {\r\n \"name\": \"emptydir1\",\r\n \"emptyDir\": {}\r\n }\r\n ],\r\n \"instanceView\": {\r\n \"events\": [],\r\n \"state\": \"Running\"\r\n }\r\n },\r\n \"identity\": {\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id5389\": {\r\n \"principalId\": \"6b141083-92a5-453e-aead-82d70c916520\",\r\n \"clientId\": \"c9a8eb44-e159-401f-bf30-d0e030291e3f\"\r\n },\r\n \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596/providers/Microsoft.ManagedIdentity/userAssignedIdentities/msi-id8652\": {\r\n \"principalId\": \"6fb24ab8-7837-414b-8a85-21612116d8ae\",\r\n \"clientId\": \"40198a6b-9a08-4007-b4ab-e575bd5cb3b7\"\r\n }\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"type\": \"UserAssigned\"\r\n },\r\n \"id\": \"/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourceGroups/rgaci1596/providers/Microsoft.ContainerInstance/containerGroups/aci9543\",\r\n \"name\": \"aci9543\",\r\n \"type\": \"Microsoft.ContainerInstance/containerGroups\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"tag2\": \"value2\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/rgaci4990?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMGIxZjY0NzEtMWJmMC00ZGRhLWFlYzMtY2I5MjcyZjA5NTkwL3Jlc291cmNlZ3JvdXBzL3JnYWNpNDk5MD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/resourcegroups/rgaci1596?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMWM2MzhjZjQtNjA4Zi00ZWU2LWI2ODAtYzMyOWU4MjRjM2E4L3Jlc291cmNlZ3JvdXBzL3JnYWNpMTU5Nj9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b73da099-06de-4816-8c27-2632cbbbc48c" + "38c1dbb0-ea68-4a23-bda6-5d01bd246e0d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.28008.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18362.", "Microsoft.Azure.Management.ResourceManager.Fluent.ResourceManagementClient/1.0.0.60", - "MacAddressHash/fd8825d96038522efcf10f412c4b0b589251f90f91c3c455d1ad0ee74c2961bf" + "MacAddressHash/39fade4f5249d2da7aa2eadef9d243fc32874438b31d4b81b2ca0e4953cbb6a1" ] }, "ResponseHeaders": { @@ -1639,22 +3518,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTQ5OTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/1c638cf4-608f-4ee6-b680-c329e824c3a8/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FDSTE1OTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2017-05-10" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "02540298-97bb-4c01-ae09-536f5cb1b3d9" + "e07bced7-4a5c-40ea-8b23-bb6b04bdc9f4" ], "x-ms-correlation-request-id": [ - "02540298-97bb-4c01-ae09-536f5cb1b3d9" + "e07bced7-4a5c-40ea-8b23-bb6b04bdc9f4" ], "x-ms-routing-request-id": [ - "WESTUS:20190619T222701Z:02540298-97bb-4c01-ae09-536f5cb1b3d9" + "SOUTHEASTASIA:20190930T030850Z:e07bced7-4a5c-40ea-8b23-bb6b04bdc9f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1663,7 +3542,10 @@ "nosniff" ], "Date": [ - "Wed, 19 Jun 2019 22:27:00 GMT" + "Mon, 30 Sep 2019 03:08:49 GMT" + ], + "Connection": [ + "keep-alive" ], "Expires": [ "-1" @@ -1678,17 +3560,17 @@ ], "Names": { "ContainerInstanceWithPublicIpAddressWithUserAssignedMSI": [ - "rgaci4990", - "aci1615", - "msi-id5939", - "msi-id1935", - "a82c3cd3-2cf0-4e04-86a7-ca6022075154", - "928adfc2-50b7-4fe8-a903-676b07032a15" + "rgaci1596", + "aci9543", + "msi-id5389", + "msi-id8652", + "d06ad06d-4fe3-4489-b24a-6474807fa2ce", + "1a305d62-a809-45bb-a387-d18d8a593e72" ] }, "Variables": { - "ServicePrincipal": "39e3d217-cb72-4b90-8532-394a7e784d93", - "AADTenant": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", - "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590" + "ServicePrincipal": "41966be6-c4d1-4730-bb67-7e697e5a6b57", + "AADTenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "SubscriptionId": "1c638cf4-608f-4ee6-b680-c329e824c3a8" } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerInstance/ContainerGroupImpl.cs b/src/ResourceManagement/ContainerInstance/ContainerGroupImpl.cs index 05f0d2873..c24d7eb2a 100644 --- a/src/ResourceManagement/ContainerInstance/ContainerGroupImpl.cs +++ b/src/ResourceManagement/ContainerInstance/ContainerGroupImpl.cs @@ -24,7 +24,7 @@ namespace Microsoft.Azure.Management.ContainerInstance.Fluent /// Implementation for ContainerGroup and its create interfaces. /// ///GENTHASH:Y29tLm1pY3Jvc29mdC5henVyZS5tYW5hZ2VtZW50LmNvbnRhaW5lcmluc3RhbmNlLmltcGxlbWVudGF0aW9uLkNvbnRhaW5lckdyb3VwSW1wbA== - internal partial class ContainerGroupImpl : + internal partial class ContainerGroupImpl : GroupableResource< IContainerGroup, ContainerGroupInner, @@ -36,7 +36,9 @@ internal partial class ContainerGroupImpl : IUpdate>, IContainerGroup, IDefinition, - IUpdate + IUpdate, + ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate, + ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate { private IStorageManager storageManager; private string creatableStorageAccountKey; @@ -80,7 +82,8 @@ public bool IsManagedServiceIdentityEnabled() ResourceIdentityType? type = this.ManagedServiceIdentityType(); return type != null && type != ResourceIdentityType.None; } - public LogAnalytics LogAnalytics() { + public LogAnalytics LogAnalytics() + { return this.Inner.Diagnostics.LogAnalytics; } @@ -93,7 +96,8 @@ public LogAnalytics LogAnalytics() { return null; } - public string NetworkProfileId() { + public string NetworkProfileId() + { return this.Inner.NetworkProfile.Id; } @@ -323,9 +327,18 @@ public async override Task CreateResourceAsync(CancellationToke var resourceInner = new ResourceInner(); resourceInner.Location = this.RegionName; resourceInner.Tags = this.Inner.Tags; - var updatedInner = await this.Manager.Inner.ContainerGroups.UpdateAsync(this.ResourceGroupName, this.Name, resourceInner, cancellationToken: cancellationToken); // TODO: this will go away after service fixes the update bug - updatedInner = await this.GetInnerAsync(cancellationToken); + // Tags could only be updated by PATCH request + var updatedInner = await this.Manager.Inner.ContainerGroups.UpdateAsync(this.ResourceGroupName, this.Name, resourceInner, cancellationToken: cancellationToken); + // Container Env Could not be updated due to service problem + foreach (var container in this.Inner.Containers) + { + container.EnvironmentVariables = null; + } + + updatedInner = await this.Manager.Inner.ContainerGroups.CreateOrUpdateAsync(this.ResourceGroupName, this.Name, this.Inner, cancellationToken: cancellationToken); + + updatedInner = await GetInnerAsync(cancellationToken); SetInner(updatedInner); this.InitializeChildrenFromInner(); @@ -546,37 +559,37 @@ public IContainerExecResponse ExecuteCommand(string containerName, string comman return new ContainerExecResponseImpl(containerExecResponseInner); } - public IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedManagedServiceIdentity() + public ContainerGroupImpl WithSystemAssignedManagedServiceIdentity() { this.containerGroupMsiHandler.WithLocalManagedServiceIdentity(); return this; } - public IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role) + public ContainerGroupImpl WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role) { this.containerGroupMsiHandler.WithAccessTo(resourceId, role); return this; } - public IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId) + public ContainerGroupImpl WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId) { this.containerGroupMsiHandler.WithAccessTo(resourceId, roleDefinitionId); return this; } - public IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role) + public ContainerGroupImpl WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role) { this.containerGroupMsiHandler.WithAccessToCurrentResourceGroup(role); return this; } - public IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId) + public ContainerGroupImpl WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId) { this.containerGroupMsiHandler.WithAccessToCurrentResourceGroup(roleDefinitionId); return this; } - public IWithCreate WithDnsConfiguration(IList dnsServerNames, string dnsSearchDomains, string dnsOptions) + public ContainerGroupImpl WithDnsConfiguration(IList dnsServerNames, string dnsSearchDomains, string dnsOptions) { DnsConfiguration dnsConfiguration = new DnsConfiguration(); dnsConfiguration.NameServers = dnsServerNames; @@ -586,7 +599,7 @@ public IWithCreate WithDnsConfiguration(IList dnsServerNames, string dns return this; } - public IWithCreate WithDnsServerNames(IList dnsServerNames) + public ContainerGroupImpl WithDnsServerNames(IList dnsServerNames) { DnsConfiguration dnsConfiguration = new DnsConfiguration(); dnsConfiguration.NameServers = dnsServerNames; @@ -594,19 +607,19 @@ public IWithCreate WithDnsServerNames(IList dnsServerNames) return this; } - public IWithCreate WithExistingUserAssignedManagedServiceIdentity(IIdentity identity) + public ContainerGroupImpl WithExistingUserAssignedManagedServiceIdentity(IIdentity identity) { this.containerGroupMsiHandler.WithExistingExternalManagedServiceIdentity(identity); return this; } - public IWithCreate WithNewUserAssignedManagedServiceIdentity(ICreatable creatableIdentity) + public ContainerGroupImpl WithNewUserAssignedManagedServiceIdentity(ICreatable creatableIdentity) { this.containerGroupMsiHandler.WithNewExternalManagedServiceIdentity(creatableIdentity); return this; } - public IDnsConfigFork WithNetworkProfileId(string subscriptionId, string resourceGroupName, string networkProfileName) + public ContainerGroupImpl WithNetworkProfileId(string subscriptionId, string resourceGroupName, string networkProfileName) { String networkProfileId = "/subscriptions/" + subscriptionId + "/resourceGroups/" + resourceGroupName + "/providers/Microsoft.Network/networkProfiles/" + networkProfileName; ContainerGroupNetworkProfile containerGroupNetworkProfile = new ContainerGroupNetworkProfile(); @@ -620,7 +633,7 @@ public IDnsConfigFork WithNetworkProfileId(string subscriptionId, string resourc return this; } - public IWithCreate WithLogAnalytics(string workspaceId, string workspaceKey) + public ContainerGroupImpl WithLogAnalytics(string workspaceId, string workspaceKey) { LogAnalytics logAnalytics = new LogAnalytics(); logAnalytics.WorkspaceId = workspaceId; @@ -630,7 +643,7 @@ public IWithCreate WithLogAnalytics(string workspaceId, string workspaceKey) return this; } - public IWithCreate WithLogAnalytics(string workspaceId, string workspaceKey, LogAnalyticsLogType logType, IDictionary metadata) + public ContainerGroupImpl WithLogAnalytics(string workspaceId, string workspaceKey, LogAnalyticsLogType logType, IDictionary metadata) { LogAnalytics logAnalytics = new LogAnalytics(); logAnalytics.WorkspaceId = workspaceId; @@ -641,5 +654,17 @@ public IWithCreate WithLogAnalytics(string workspaceId, string workspaceKey, Log this.Inner.Diagnostics.LogAnalytics = logAnalytics; return this; } + + public ContainerGroupImpl WithoutSystemAssignedManagedServiceIdentity() + { + this.containerGroupMsiHandler.WithoutLocalManagedServiceIdentity(); + return this; + } + + public ContainerGroupImpl WithoutUserAssignedManagedServiceIdentity(string identityId) + { + this.containerGroupMsiHandler.WithoutExternalManagedServiceIdentity(identityId); + return this; + } } } \ No newline at end of file diff --git a/src/ResourceManagement/ContainerInstance/ContainerGroupMsiHandler.cs b/src/ResourceManagement/ContainerInstance/ContainerGroupMsiHandler.cs index 8d9c4fed8..5777925a6 100644 --- a/src/ResourceManagement/ContainerInstance/ContainerGroupMsiHandler.cs +++ b/src/ResourceManagement/ContainerInstance/ContainerGroupMsiHandler.cs @@ -39,7 +39,24 @@ internal ContainerGroupMsiHandler(IGraphRbacManager rbacManager, ContainerGroupI internal void HandleExternalIdentities() { - if (this.userAssignedIdentities.Any()) + if (this.containerGroup.Inner.Identity == null) + { + return; + } + + if (this.userAssignedIdentities == null || this.userAssignedIdentities.Count == 0) + { + if (this.containerGroup.Inner.Identity.Type == ResourceIdentityType.SystemAssignedUserAssigned) + { + this.containerGroup.Inner.Identity.Type = ResourceIdentityType.SystemAssigned; + } + if (this.containerGroup.Inner.Identity.Type == ResourceIdentityType.UserAssigned) + { + this.containerGroup.Inner.Identity.Type = ResourceIdentityType.None; + } + this.containerGroup.Inner.Identity.UserAssignedIdentities = null; + } + else { this.containerGroup.Inner.Identity.UserAssignedIdentities = this.userAssignedIdentities; } @@ -47,7 +64,7 @@ internal void HandleExternalIdentities() internal void ProcessCreatedExternalIdentities() { - foreach(var key in this.creatableIdentityKeys) + foreach (var key in this.creatableIdentityKeys) { var identity = (IIdentity)this.containerGroup.CreatorTaskGroup.CreatedResource(key); this.userAssignedIdentities[identity.Id] = new ContainerGroupIdentityUserAssignedIdentitiesValue(); @@ -56,7 +73,7 @@ internal void ProcessCreatedExternalIdentities() } /// - /// Specifies that Local Managed Service Identity needs to be enabled in the virtual machine. + /// Specifies that Local Managed Service Identity needs to be enabled in the container group. /// MSI extension is not already installed then it will be installed with access token /// port as 50342. /// @@ -69,9 +86,9 @@ internal ContainerGroupMsiHandler WithLocalManagedServiceIdentity() /// /// Specifies that given identity should be set as one of the External Managed Service Identity - /// of the virtual machine. + /// of the container group. /// - /// Yet-to-be-created identity to be associated with the virtual machine. + /// Yet-to-be-created identity to be associated with the container group. /// ContainerGroupMsiHandler internal ContainerGroupMsiHandler WithNewExternalManagedServiceIdentity(ICreatable creatableIdentity) { @@ -86,7 +103,7 @@ internal ContainerGroupMsiHandler WithNewExternalManagedServiceIdentity(ICreatab /// /// Specifies that given identity should be set as one of the External Managed Service Identity - /// of the virtual machine. + /// of the container group. /// /// An identity to associate. /// ContainerGroupMsiHandler. @@ -97,6 +114,42 @@ internal ContainerGroupMsiHandler WithExistingExternalManagedServiceIdentity(IId return this; } + /// + /// Specifies that given identity should be removed from the list of External Managed Service Identity + /// associated with the container group machine. + /// + /// Resource id of the identity. + /// VirtualMachineMsiHandler. + internal ContainerGroupMsiHandler WithoutExternalManagedServiceIdentity(string identityId) + { + this.userAssignedIdentities.Remove(identityId); + return this; + } + + /// + /// Specifies that Local Managed Service Identity needs to be disabled in the container group. + /// + /// VirtualMachineMsiHandler. + internal ContainerGroupMsiHandler WithoutLocalManagedServiceIdentity() + { + if (this.containerGroup.Inner.Identity == null || + this.containerGroup.Inner.Identity.Type == null || + this.containerGroup.Inner.Identity.Type == Models.ResourceIdentityType.None || + this.containerGroup.Inner.Identity.Type == Models.ResourceIdentityType.UserAssigned) + { + return this; + } + else if (this.containerGroup.Inner.Identity.Type == Models.ResourceIdentityType.SystemAssigned) + { + this.containerGroup.Inner.Identity.Type = Models.ResourceIdentityType.None; + } + else if (this.containerGroup.Inner.Identity.Type.Value == Models.ResourceIdentityType.SystemAssignedUserAssigned) + { + this.containerGroup.Inner.Identity.Type = Models.ResourceIdentityType.UserAssigned; + } + return this; + } + private void InitContainerGroupIdentity(ResourceIdentityType identityType) { if (identityType != ResourceIdentityType.UserAssigned && identityType != ResourceIdentityType.SystemAssigned) diff --git a/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Definition/IDefinition.cs b/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Definition/IDefinition.cs index 390560fc1..d1954da36 100644 --- a/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Definition/IDefinition.cs +++ b/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Definition/IDefinition.cs @@ -845,8 +845,8 @@ public interface IWithSystemAssignedManagedServiceIdentityBeta : /// role based access. /// public interface IWithSystemAssignedIdentityBasedAccessOrCreate : - Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithCreate, - Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreateBeta + Microsoft.Azure.Management.ResourceManager.Fluent.Core.IBeta, + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithCreate { /// /// Specifies a system assigned managed service identity with access to a specific resource with a specific role. @@ -927,45 +927,6 @@ public interface IWithGitRevisionBeta : Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithVolumeAttach WithGitRevision(string gitRevision); } - /// - /// The stage of the container instance definition allowing to specify system assigned managed service identity with specific - /// role based access. - /// - public interface IWithSystemAssignedIdentityBasedAccessOrCreateBeta : - Microsoft.Azure.Management.ResourceManager.Fluent.Core.IBeta - { - - /// - /// Specifies a system assigned managed service identity with access to a specific resource with a specified role. - /// - /// The id of the resource you are setting up access to. - /// Access role to be assigned to the identity. - /// The next stage of the definition. - Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role); - - /// - /// Specifies a system assigned managed service identity with access to a specific resource with a specified role from the id. - /// - /// The id of the resource you are setting up access to. - /// Id of the access role to be assigned to the identity. - /// The next stage of the definition. - Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId); - - /// - /// Specifies a system assigned managed service identity with access to the current resource group and with the specified role. - /// - /// Access role to be assigned to the identity. - /// The next stage of the definition. - Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role); - - /// - /// Specifies a system assigned managed service identity with access to the current resource group and with the specified role from the id. - /// - /// Id of the access role to be assigned to the identity. - /// The next stage of the definition. - Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId); - } - /// /// The stage of the container group definition allowing to specify a private image registry or a volume. /// diff --git a/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Update/IUpdate.cs b/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Update/IUpdate.cs index 2a282206d..6d8a50247 100644 --- a/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Update/IUpdate.cs +++ b/src/ResourceManagement/ContainerInstance/Domain/ContainerGroup/Update/IUpdate.cs @@ -1,14 +1,121 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. +using Microsoft.Azure.Management.Graph.RBAC.Fluent; +using Microsoft.Azure.Management.Msi.Fluent; +using Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions; + namespace Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update { + /// + /// The stage of the container group update allowing to enable System Assigned (Local) Managed Service Identity. + /// + public interface IWithSystemAssignedManagedServiceIdentity : + Microsoft.Azure.Management.ResourceManager.Fluent.Core.IBeta + { + + /// + /// Specifies that System Assigned (Local) Managed Service Identity needs to be disabled. + /// + /// The next stage of the update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IUpdate WithoutSystemAssignedManagedServiceIdentity(); + + /// + /// Specifies that System Assigned (Local) Managed Service Identity needs to be enabled in the + /// container group. + /// + /// The next stage of the update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate WithSystemAssignedManagedServiceIdentity(); + } + + /// + /// The stage of the System Assigned (Local) Managed Service Identity enabled container group allowing + /// to set access role for the identity. + /// + public interface IWithSystemAssignedIdentityBasedAccessOrUpdate : + Microsoft.Azure.Management.ResourceManager.Fluent.Core.IBeta, + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IUpdate + { + + /// + /// Specifies that container group's system assigned (local) identity should have the given + /// access (described by the role) on an ARM resource identified by the resource ID. + /// Applications running on the container group will have the same permission (role) on + /// the ARM resource. + /// + /// The ARM identifier of the resource. + /// Access role to assigned to the container group's local identity. + /// The next stage of the update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role); + + /// + /// Specifies that container group's system assigned (local) identity should have the access + /// (described by the role definition) on an ARM resource identified by the resource ID. + /// Applications running on the container group will have the same permission (role) on + /// the ARM resource. + /// + /// Scope of the access represented in ARM resource ID format. + /// Access role definition to assigned to the container group's local identity. + /// The next stage of the update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId); + + /// + /// Specifies that container group's system assigned (local) identity should have the given access + /// (described by the role) on the resource group that container group resides. Applications running + /// on the container group will have the same permission (role) on the resource group. + /// + /// Access role to assigned to the container group's local identity. + /// The next stage of the update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role); + + /// + /// Specifies that container group's system assigned (local) identity should have the access (described by the + /// role definition) on the resource group that container group resides. Applications running + /// on the container group will have the same permission (role) on the resource group. + /// + /// Access role definition to assigned to the container group's local identity. + /// The next stage of the update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId); + } + + /// + /// The stage of the container group update allowing to add or remove User Assigned (External) Managed Service Identities. + /// + public interface IWithUserAssignedManagedServiceIdentity : + Microsoft.Azure.Management.ResourceManager.Fluent.Core.IBeta + { + + /// + /// Specifies an existing user assigned identity to be associated with the container group. + /// + /// The identity. + /// The next stage of the container group update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IUpdate WithExistingUserAssignedManagedServiceIdentity(IIdentity identity); + + /// + /// Specifies the definition of a not-yet-created user assigned identity to be associated with the container group. + /// + /// A creatable identity definition. + /// The next stage of the container group update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IUpdate WithNewUserAssignedManagedServiceIdentity(ICreatable creatableIdentity); + + /// + /// Specifies that an user assigned identity associated with the container group should be removed. + /// + /// ARM resource id of the identity. + /// The next stage of the container group update. + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IUpdate WithoutUserAssignedManagedServiceIdentity(string identityId); + } + + /// /// The template for an update operation, containing all the settings that can be modified. /// public interface IUpdate : Microsoft.Azure.Management.ResourceManager.Fluent.Core.Resource.Update.IUpdateWithTags, - Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions.IAppliable + Microsoft.Azure.Management.ResourceManager.Fluent.Core.ResourceActions.IAppliable, + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithSystemAssignedManagedServiceIdentity, + Microsoft.Azure.Management.ContainerInstance.Fluent.ContainerGroup.Update.IWithUserAssignedManagedServiceIdentity { } diff --git a/src/ResourceManagement/ContainerInstance/Domain/InterfaceImpl/ContainerGroupImpl.cs b/src/ResourceManagement/ContainerInstance/Domain/InterfaceImpl/ContainerGroupImpl.cs index 3014a6e85..209fe49b3 100644 --- a/src/ResourceManagement/ContainerInstance/Domain/InterfaceImpl/ContainerGroupImpl.cs +++ b/src/ResourceManagement/ContainerInstance/Domain/InterfaceImpl/ContainerGroupImpl.cs @@ -509,6 +509,35 @@ ContainerGroup.Definition.IWithCreate ContainerGroup.Definition.IWithUserAssigne return this.WithExistingUserAssignedManagedServiceIdentity(identity); } + /// + /// Specifies an existing user assigned identity to be associated with the container group. + /// + /// The identity. + /// The next stage of the container group update. + ContainerGroup.Update.IUpdate ContainerGroup.Update.IWithUserAssignedManagedServiceIdentity.WithExistingUserAssignedManagedServiceIdentity(IIdentity identity) + { + return this.WithExistingUserAssignedManagedServiceIdentity(identity); + } + + /// + /// Specifies that System Assigned (Local) Managed Service Identity needs to be disabled. + /// + /// The next stage of the update. + ContainerGroup.Update.IUpdate ContainerGroup.Update.IWithSystemAssignedManagedServiceIdentity.WithoutSystemAssignedManagedServiceIdentity() + { + return this.WithoutSystemAssignedManagedServiceIdentity(); + } + + /// + /// Specifies that an user assigned identity associated with the container group should be removed. + /// + /// ARM resource id of the identity. + /// The next stage of the virtual machine update. + ContainerGroup.Update.IUpdate ContainerGroup.Update.IWithUserAssignedManagedServiceIdentity.WithoutUserAssignedManagedServiceIdentity(string identityId) + { + return this.WithoutUserAssignedManagedServiceIdentity(identityId); + } + /// /// Specifies this is a Linux container group. /// @@ -575,6 +604,16 @@ ContainerGroup.Definition.IWithCreate ContainerGroup.Definition.IWithUserAssigne return this.WithNewUserAssignedManagedServiceIdentity(creatableIdentity); } + /// + /// Specifies the definition of a not-yet-created user assigned identity to be associated with the container group. + /// + /// A creatable identity definition. + /// The next stage of the container group update. + ContainerGroup.Update.IUpdate ContainerGroup.Update.IWithUserAssignedManagedServiceIdentity.WithNewUserAssignedManagedServiceIdentity(ICreatable creatableIdentity) + { + return this.WithNewUserAssignedManagedServiceIdentity(creatableIdentity); + } + /// /// Skips the definition of volumes to be shared by the container instances. /// An IllegalArgumentException will be thrown if a container instance attempts to define a volume mounting. @@ -622,7 +661,18 @@ ContainerGroup.Definition.IWithCreate ContainerGroup.Definition.IWithRestartPoli /// The id of the resource you are setting up access to. /// Access role to be assigned to the identity. /// The next stage of the definition. - ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreateBeta.WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role) + ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate.WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role) + { + return this.WithSystemAssignedIdentityBasedAccessTo(resourceId, role); + } + + /// + /// Specifies a system assigned managed service identity with access to a specific resource with a specified role. + /// + /// The id of the resource you are setting up access to. + /// Access role to be assigned to the identity. + /// The next stage of the update definition. + ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate.WithSystemAssignedIdentityBasedAccessTo(string resourceId, BuiltInRole role) { return this.WithSystemAssignedIdentityBasedAccessTo(resourceId, role); } @@ -633,7 +683,18 @@ ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate Contain /// The id of the resource you are setting up access to. /// Id of the access role to be assigned to the identity. /// The next stage of the definition. - ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreateBeta.WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId) + ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate.WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId) + { + return this.WithSystemAssignedIdentityBasedAccessTo(resourceId, roleDefinitionId); + } + + /// + /// Specifies a system assigned managed service identity with access to a specific resource with a specified role from the id. + /// + /// The id of the resource you are setting up access to. + /// Id of the access role to be assigned to the identity. + /// The next stage of the update definition. + ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate.WithSystemAssignedIdentityBasedAccessTo(string resourceId, string roleDefinitionId) { return this.WithSystemAssignedIdentityBasedAccessTo(resourceId, roleDefinitionId); } @@ -643,7 +704,17 @@ ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate Contain /// /// Access role to be assigned to the identity. /// The next stage of the definition. - ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreateBeta.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role) + ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role) + { + return this.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(role); + } + + /// + /// Specifies a system assigned managed service identity with access to the current resource group and with the specified role. + /// + /// Access role to be assigned to the identity. + /// The next stage of the update definition. + ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(BuiltInRole role) { return this.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(role); } @@ -653,7 +724,17 @@ ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate Contain /// /// Id of the access role to be assigned to the identity. /// The next stage of the definition. - ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreateBeta.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId) + ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId) + { + return this.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(roleDefinitionId); + } + + /// + /// Specifies a system assigned managed service identity with access to the current resource group and with the specified role from the id. + /// + /// Id of the access role to be assigned to the identity. + /// The next stage of the update definition. + ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(string roleDefinitionId) { return this.WithSystemAssignedIdentityBasedAccessToCurrentResourceGroup(roleDefinitionId); } @@ -667,6 +748,15 @@ ContainerGroup.Definition.IWithSystemAssignedIdentityBasedAccessOrCreate Contain return this.WithSystemAssignedManagedServiceIdentity(); } + /// + /// Specifies a system assigned managed service identity for the container group. + /// + /// The next stage of the update definition. + ContainerGroup.Update.IWithSystemAssignedIdentityBasedAccessOrUpdate ContainerGroup.Update.IWithSystemAssignedManagedServiceIdentity.WithSystemAssignedManagedServiceIdentity() + { + return this.WithSystemAssignedManagedServiceIdentity(); + } + /// /// Specifies this is a Windows container group. ///