diff --git a/azure-cli-extensions.pyproj b/azure-cli-extensions.pyproj
index d9a8743f17..e87363acb0 100644
--- a/azure-cli-extensions.pyproj
+++ b/azure-cli-extensions.pyproj
@@ -4572,6 +4572,7 @@
+
Code
diff --git a/src/index.json b/src/index.json
index 8378d0426e..6e9e71d488 100644
--- a/src/index.json
+++ b/src/index.json
@@ -1828,8 +1828,8 @@
],
"vm-repair": [
{
- "downloadUrl": "https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.1.1-py2.py3-none-any.whl",
- "filename": "vm_repair-0.1.1-py2.py3-none-any.whl",
+ "downloadUrl": "https://azurecomputeaidrepair.blob.core.windows.net/prod/vm_repair-0.1.2-py2.py3-none-any.whl",
+ "filename": "vm_repair-0.1.2-py2.py3-none-any.whl",
"metadata": {
"classifiers": [
"Development Status :: 4 - Beta",
@@ -1866,9 +1866,9 @@
"metadata_version": "2.0",
"name": "vm-repair",
"summary": "Auto repair commands to fix VMs.",
- "version": "0.1.1"
+ "version": "0.1.2"
},
- "sha256Digest": "22f956b98b4c9cad015317eab624384101e1ef5cacc23c63c205d0f5c0961b67"
+ "sha256Digest": "ab4cef3b70ef3c6ef97ef665024c5cb2c164f971fd9773bdedb2e4070e2008a1"
}
],
"webapp": [
diff --git a/src/vm-repair/azext_vm_repair/custom.py b/src/vm-repair/azext_vm_repair/custom.py
index 35d4b8884f..21ba4b5a9d 100644
--- a/src/vm-repair/azext_vm_repair/custom.py
+++ b/src/vm-repair/azext_vm_repair/custom.py
@@ -74,8 +74,9 @@ def create(cmd, vm_name, resource_group_name, repair_password=None, repair_usern
if is_managed:
logger.info('Source VM uses managed disks. Creating repair VM with managed disks.\n')
# Copy OS disk command
- copy_disk_command = 'az disk create -g {g} -n {n} --source {s} --location {loc} --query id -o tsv' \
- .format(g=resource_group_name, n=copy_disk_name, s=target_disk_name, loc=source_vm.location)
+ disk_sku = source_vm.storage_profile.os_disk.managed_disk.storage_account_type
+ copy_disk_command = 'az disk create -g {g} -n {n} --source {s} --sku {sku} --location {loc} --query id -o tsv' \
+ .format(g=resource_group_name, n=copy_disk_name, s=target_disk_name, sku=disk_sku, loc=source_vm.location)
# Validate create vm create command to validate parameters before runnning copy disk command
validate_create_vm_command = create_repair_vm_command + ' --validate'
@@ -184,7 +185,7 @@ def create(cmd, vm_name, resource_group_name, repair_password=None, repair_usern
return_dict['resourceTag'] = resource_tag
return_dict['createdResources'] = created_resources
- logger.info('\n' + return_dict['message'] + '\n')
+ logger.info('\n%s\n', return_dict['message'])
return return_dict
@@ -261,5 +262,5 @@ def restore(cmd, vm_name, resource_group_name, disk_name=None, repair_vm_id=None
'you may choose to delete the source OS disk \'{src_disk}\' within resource group \'{rg}\' manually if you no longer need it, to avoid any undesired costs.' \
.format(disk=disk_name, n=vm_name, src_disk=source_disk, rg=resource_group_name)
- logger.info('\n' + return_dict['message'] + '\n')
+ logger.info('\n%s\n', return_dict['message'])
return return_dict
diff --git a/src/vm-repair/azext_vm_repair/exceptions.py b/src/vm-repair/azext_vm_repair/exceptions.py
index 11dd6170ba..001057e9f5 100644
--- a/src/vm-repair/azext_vm_repair/exceptions.py
+++ b/src/vm-repair/azext_vm_repair/exceptions.py
@@ -6,19 +6,15 @@
class AzCommandError(Exception):
"""Raised when az command called and returns error"""
- pass
class SkuNotAvailableError(Exception):
"""Raised when unable to find compatible SKU for repair VM"""
- pass
class UnmanagedDiskCopyError(Exception):
"""Raised when error occured during unmanaged disk copy"""
- pass
class WindowsOsNotAvailableError(Exception):
"""Raised the Windows image not available from gallery."""
- pass
diff --git a/src/vm-repair/azext_vm_repair/repair_utils.py b/src/vm-repair/azext_vm_repair/repair_utils.py
index 1fac5e8912..1640f0605a 100644
--- a/src/vm-repair/azext_vm_repair/repair_utils.py
+++ b/src/vm-repair/azext_vm_repair/repair_utils.py
@@ -31,6 +31,10 @@ def _call_az_command(command_string, run_async=False, secure_params=None):
"""
tokenized_command = shlex.split(command_string)
+
+ # If command does not start with 'az' then raise exception
+ if not tokenized_command or tokenized_command[0] != 'az':
+ raise AzCommandError("The command string is not an 'az' command!")
# If run on windows, add 'cmd /c'
windows_os_name = 'nt'
if os.name == windows_os_name:
diff --git a/src/vm-repair/azext_vm_repair/tests/latest/recordings/test_create_restore.yaml b/src/vm-repair/azext_vm_repair/tests/latest/recordings/test_create_restore.yaml
index 5dd274afe8..679d13b04b 100644
--- a/src/vm-repair/azext_vm_repair/tests/latest/recordings/test_create_restore.yaml
+++ b/src/vm-repair/azext_vm_repair/tests/latest/recordings/test_create_restore.yaml
@@ -1,7 +1,7 @@
interactions:
- request:
body: '{"location": "westus2", "tags": {"product": "azurecli", "cause": "automation",
- "date": "2019-05-20T22:46:44Z"}}'
+ "date": "2019-07-08T23:35:38Z"}}'
headers:
Accept:
- application/json
@@ -19,14 +19,14 @@ interactions:
- --location --name --tag
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-05-20T22:46:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-07-08T23:35:38Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -35,7 +35,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:46:46 GMT
+ - Mon, 08 Jul 2019 23:35:41 GMT
expires:
- '-1'
pragma:
@@ -45,7 +45,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1197'
status:
code: 201
message: Created
@@ -64,14 +64,14 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2018-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-05-20T22:46:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2019-07-08T23:35:38Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -80,7 +80,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:46:46 GMT
+ - Mon, 08 Jul 2019 23:35:41 GMT
expires:
- '-1'
pragma:
@@ -104,7 +104,7 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python-requests/2.21.0
+ - python-requests/2.22.0
method: GET
uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
response:
@@ -157,17 +157,17 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Mon, 20 May 2019 22:46:47 GMT
+ - Mon, 08 Jul 2019 23:35:42 GMT
etag:
- - '"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"'
+ - W/"f5944d69cdbfb4a2bb2ddda8c5f050bde5bbcb32"
expires:
- - Mon, 20 May 2019 22:51:47 GMT
+ - Mon, 08 Jul 2019 23:40:42 GMT
source-age:
- - '3'
+ - '177'
strict-transport-security:
- max-age=31536000
vary:
- - Authorization,Accept-Encoding
+ - Authorization,Accept-Encoding, Accept-Encoding
via:
- 1.1 varnish
x-cache:
@@ -177,17 +177,17 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 89a53dd160a8e4d64e8d01e6ed55bab55e3bd149
+ - 0005d620f5ca1aacbc067e3b4facded9e7d6e838
x-frame-options:
- deny
x-geo-block-list:
- ''
x-github-request-id:
- - 5DC2:6659:3B5426:45F4D4:5CE32E53
+ - 44FE:489C:3C5CB:5A807:5D23D29C
x-served-by:
- - cache-dfw18627-DFW
+ - cache-dfw18629-DFW
x-timer:
- - S1558392407.085056,VS0,VE0
+ - S1562628943.505582,VS0,VE0
x-xss-protection:
- 1; mode=block
status:
@@ -207,12 +207,12 @@ interactions:
ParameterSetName:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.1.1
- Azure-SDK-For-Python AZURECLI/2.0.64
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-storage/3.3.0
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts?api-version=2018-07-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts?api-version=2019-04-01
response:
body:
string: '{"value":[]}'
@@ -224,7 +224,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:46:46 GMT
+ - Mon, 08 Jul 2019 23:35:42 GMT
expires:
- '-1'
pragma:
@@ -252,8 +252,8 @@ interactions:
ParameterSetName:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/2.6.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
@@ -269,7 +269,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:46:47 GMT
+ - Mon, 08 Jul 2019 23:35:43 GMT
expires:
- '-1'
pragma:
@@ -287,7 +287,7 @@ interactions:
body: 'b''{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring",
"metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources":
- [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage5a44c93d26b515",
+ [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstoragef286ee5104e954",
"apiVersion": "2015-06-15", "location": "westus2", "tags": {}, "dependsOn":
[], "properties": {"accountType": "Premium_LRS"}}, {"name": "vm1VNET", "type":
"Microsoft.Network/virtualNetworks", "location": "westus2", "apiVersion": "2015-06-15",
@@ -308,12 +308,12 @@ interactions:
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}],
"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}},
{"apiVersion": "2019-03-01", "type": "Microsoft.Compute/virtualMachines", "name":
- "vm1", "location": "westus2", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage5a44c93d26b515",
+ "vm1", "location": "westus2", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954",
"Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile":
{"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
- "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_5a44c93d26",
- "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd"}},
+ "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_f286ee5104",
+ "caching": "ReadWrite", "vhd": {"uri": "https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd"}},
"imageReference": {"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer",
"sku": "2016-Datacenter", "version": "latest"}}, "osProfile": {"computerName":
"vm1", "adminUsername": "azureadmin", "adminPassword": "[parameters(\''adminPassword\'')]"}}}],
@@ -336,25 +336,25 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_BzFqdL54m2t3HRsqE0AkVMyDrpMpxvDr","name":"vm_deploy_BzFqdL54m2t3HRsqE0AkVMyDrpMpxvDr","properties":{"templateHash":"6172856108253169612","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-05-20T22:46:49.2664538Z","duration":"PT0.8340623S","correlationId":"a424ef19-1783-483e-b716-72830a9b116c","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus2"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstorage5a44c93d26b515","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage5a44c93d26b515"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","name":"vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","properties":{"templateHash":"13965056278452338682","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2019-07-08T23:35:44.1728781Z","duration":"PT0.7713534S","correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus2"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef286ee5104e954"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_BzFqdL54m2t3HRsqE0AkVMyDrpMpxvDr/operationStatuses/08586432144770452399?api-version=2018-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/operationStatuses/08586389779420761191?api-version=2018-05-01
cache-control:
- no-cache
content-length:
- - '3170'
+ - '3171'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:46:49 GMT
+ - Mon, 08 Jul 2019 23:35:43 GMT
expires:
- '-1'
pragma:
@@ -364,10 +364,112 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
status:
code: 201
message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A35%3A53Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:35:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A36%3A03Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:36:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -383,9 +485,9 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389779420761191?api-version=2018-05-01
response:
body:
string: '{"status":"Running"}'
@@ -397,7 +499,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:47:18 GMT
+ - Mon, 08 Jul 2019 23:36:13 GMT
expires:
- '-1'
pragma:
@@ -411,6 +513,162 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A36%3A14Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:36:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A36%3A24Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:36:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A36%3A34Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3857'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:36:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -426,9 +684,9 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389779420761191?api-version=2018-05-01
response:
body:
string: '{"status":"Running"}'
@@ -440,7 +698,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:47:49 GMT
+ - Mon, 08 Jul 2019 23:36:44 GMT
expires:
- '-1'
pragma:
@@ -454,6 +712,282 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A36%3A45Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '25478'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:36:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A36%3A55Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '42236'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:36:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A37%3A05Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '72277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:37:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -469,9 +1003,9 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389779420761191?api-version=2018-05-01
response:
body:
string: '{"status":"Running"}'
@@ -483,7 +1017,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:48:19 GMT
+ - Mon, 08 Jul 2019 23:37:14 GMT
expires:
- '-1'
pragma:
@@ -497,6 +1031,358 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A37%3A16Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '72277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:37:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A37%3A26Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '79453'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:37:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A37%3A37Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '83108'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:37:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -512,9 +1398,9 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389779420761191?api-version=2018-05-01
response:
body:
string: '{"status":"Running"}'
@@ -526,7 +1412,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:48:49 GMT
+ - Mon, 08 Jul 2019 23:37:44 GMT
expires:
- '-1'
pragma:
@@ -540,6 +1426,396 @@ interactions:
status:
code: 200
message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A37%3A47Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1e631b72-c210-484f-a051-0e6cbc6c8d53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1e631b72-c210-484f-a051-0e6cbc6c8d53/ticks/636982257881031767","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a56eb33a-c598-477a-aa44-201fc9817ca8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:28.1031767Z","submissionTimestamp":"2019-07-08T23:37:37.1478716Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '86730'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:37:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A37%3A58Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2d624d7c-2855-4cde-9ecc-83196e1b8b28","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/2d624d7c-2855-4cde-9ecc-83196e1b8b28/ticks/636982257926384050","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"d92c0b88-fdf9-4576-93c2-2b0d69163ac1","responseBody":"{\"properties\":{\"vmId\":\"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\"hardwareProfile\":{\"vmSize\":\"Standard_DS1_v2\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"MicrosoftWindowsServer\",\"offer\":\"WindowsServer\",\"sku\":\"2016-Datacenter\",\"version\":\"latest\"},\"osDisk\":{\"osType\":\"Windows\",\"name\":\"osdisk_f286ee5104\",\"createOption\":\"FromImage\",\"vhd\":{\"uri\":\"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"},\"caching\":\"ReadWrite\"},\"dataDisks\":[]},\"osProfile\":{\"computerName\":\"vm1\",\"adminUsername\":\"azureadmin\",\"windowsConfiguration\":{\"provisionVMAgent\":true,\"enableAutomaticUpdates\":true},\"secrets\":[],\"allowExtensionOperations\":true,\"requireGuestProvisionSignal\":true},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\"provisioningState\":\"Creating\"},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"westus2\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\"name\":\"vm1\"}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:36:32.638405Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6e930694-de1a-4a0c-9906-833689960ae1","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6e930694-de1a-4a0c-9906-833689960ae1/ticks/636982257925434285","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:32.5434285Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1e631b72-c210-484f-a051-0e6cbc6c8d53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1e631b72-c210-484f-a051-0e6cbc6c8d53/ticks/636982257881031767","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a56eb33a-c598-477a-aa44-201fc9817ca8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:28.1031767Z","submissionTimestamp":"2019-07-08T23:37:37.1478716Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '95518'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:37:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A38%3A08Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2d624d7c-2855-4cde-9ecc-83196e1b8b28","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/2d624d7c-2855-4cde-9ecc-83196e1b8b28/ticks/636982257926384050","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"d92c0b88-fdf9-4576-93c2-2b0d69163ac1","responseBody":"{\"properties\":{\"vmId\":\"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\"hardwareProfile\":{\"vmSize\":\"Standard_DS1_v2\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"MicrosoftWindowsServer\",\"offer\":\"WindowsServer\",\"sku\":\"2016-Datacenter\",\"version\":\"latest\"},\"osDisk\":{\"osType\":\"Windows\",\"name\":\"osdisk_f286ee5104\",\"createOption\":\"FromImage\",\"vhd\":{\"uri\":\"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"},\"caching\":\"ReadWrite\"},\"dataDisks\":[]},\"osProfile\":{\"computerName\":\"vm1\",\"adminUsername\":\"azureadmin\",\"windowsConfiguration\":{\"provisionVMAgent\":true,\"enableAutomaticUpdates\":true},\"secrets\":[],\"allowExtensionOperations\":true,\"requireGuestProvisionSignal\":true},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\"provisioningState\":\"Creating\"},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"westus2\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\"name\":\"vm1\"}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:36:32.638405Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6e930694-de1a-4a0c-9906-833689960ae1","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6e930694-de1a-4a0c-9906-833689960ae1/ticks/636982257925434285","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:32.5434285Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"322897e9-2532-417c-b77b-032ca64e8d9d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/322897e9-2532-417c-b77b-032ca64e8d9d/ticks/636982257915833786","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:31.5833786Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1e631b72-c210-484f-a051-0e6cbc6c8d53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1e631b72-c210-484f-a051-0e6cbc6c8d53/ticks/636982257881031767","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a56eb33a-c598-477a-aa44-201fc9817ca8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:28.1031767Z","submissionTimestamp":"2019-07-08T23:37:37.1478716Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '99203'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:38:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -555,9 +1831,9 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389779420761191?api-version=2018-05-01
response:
body:
string: '{"status":"Running"}'
@@ -569,7 +1845,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:49:20 GMT
+ - Mon, 08 Jul 2019 23:38:15 GMT
expires:
- '-1'
pragma:
@@ -594,33 +1870,400 @@ interactions:
- vm create
Connection:
- keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
ParameterSetName:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A38%3A18Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
response:
body:
- string: '{"status":"Running"}'
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2d624d7c-2855-4cde-9ecc-83196e1b8b28","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/2d624d7c-2855-4cde-9ecc-83196e1b8b28/ticks/636982257926384050","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"d92c0b88-fdf9-4576-93c2-2b0d69163ac1","responseBody":"{\"properties\":{\"vmId\":\"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\"hardwareProfile\":{\"vmSize\":\"Standard_DS1_v2\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"MicrosoftWindowsServer\",\"offer\":\"WindowsServer\",\"sku\":\"2016-Datacenter\",\"version\":\"latest\"},\"osDisk\":{\"osType\":\"Windows\",\"name\":\"osdisk_f286ee5104\",\"createOption\":\"FromImage\",\"vhd\":{\"uri\":\"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"},\"caching\":\"ReadWrite\"},\"dataDisks\":[]},\"osProfile\":{\"computerName\":\"vm1\",\"adminUsername\":\"azureadmin\",\"windowsConfiguration\":{\"provisionVMAgent\":true,\"enableAutomaticUpdates\":true},\"secrets\":[],\"allowExtensionOperations\":true,\"requireGuestProvisionSignal\":true},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\"provisioningState\":\"Creating\"},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"westus2\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\"name\":\"vm1\"}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:36:32.638405Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6e930694-de1a-4a0c-9906-833689960ae1","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6e930694-de1a-4a0c-9906-833689960ae1/ticks/636982257925434285","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:32.5434285Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"322897e9-2532-417c-b77b-032ca64e8d9d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/322897e9-2532-417c-b77b-032ca64e8d9d/ticks/636982257915833786","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:31.5833786Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1e631b72-c210-484f-a051-0e6cbc6c8d53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1e631b72-c210-484f-a051-0e6cbc6c8d53/ticks/636982257881031767","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a56eb33a-c598-477a-aa44-201fc9817ca8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:28.1031767Z","submissionTimestamp":"2019-07-08T23:37:37.1478716Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '99203'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:49:49 GMT
+ - Mon, 08 Jul 2019 23:38:18 GMT
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- - Accept-Encoding
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A38%3A29Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"270dac2e-30b2-4fae-8b9e-04a36855cb4c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/270dac2e-30b2-4fae-8b9e-04a36855cb4c/ticks/636982258730985819","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ecb94b8f-cf8f-4e62-ba2b-a47c5f36dfa3","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:37:53.0985819Z","submissionTimestamp":"2019-07-08T23:38:24.1185742Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2d624d7c-2855-4cde-9ecc-83196e1b8b28","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/2d624d7c-2855-4cde-9ecc-83196e1b8b28/ticks/636982257926384050","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"d92c0b88-fdf9-4576-93c2-2b0d69163ac1","responseBody":"{\"properties\":{\"vmId\":\"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\"hardwareProfile\":{\"vmSize\":\"Standard_DS1_v2\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"MicrosoftWindowsServer\",\"offer\":\"WindowsServer\",\"sku\":\"2016-Datacenter\",\"version\":\"latest\"},\"osDisk\":{\"osType\":\"Windows\",\"name\":\"osdisk_f286ee5104\",\"createOption\":\"FromImage\",\"vhd\":{\"uri\":\"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"},\"caching\":\"ReadWrite\"},\"dataDisks\":[]},\"osProfile\":{\"computerName\":\"vm1\",\"adminUsername\":\"azureadmin\",\"windowsConfiguration\":{\"provisionVMAgent\":true,\"enableAutomaticUpdates\":true},\"secrets\":[],\"allowExtensionOperations\":true,\"requireGuestProvisionSignal\":true},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\"provisioningState\":\"Creating\"},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"westus2\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\"name\":\"vm1\"}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:36:32.638405Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6e930694-de1a-4a0c-9906-833689960ae1","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6e930694-de1a-4a0c-9906-833689960ae1/ticks/636982257925434285","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:32.5434285Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"322897e9-2532-417c-b77b-032ca64e8d9d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/322897e9-2532-417c-b77b-032ca64e8d9d/ticks/636982257915833786","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:31.5833786Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1e631b72-c210-484f-a051-0e6cbc6c8d53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1e631b72-c210-484f-a051-0e6cbc6c8d53/ticks/636982257881031767","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a56eb33a-c598-477a-aa44-201fc9817ca8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:28.1031767Z","submissionTimestamp":"2019-07-08T23:37:37.1478716Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '102858'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:38:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --admin-username --image --admin-password --use-unmanaged-disk
+ User-Agent:
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 azure-mgmt-monitor/0.5.2
+ Azure-SDK-For-Python AZURECLI/2.0.68
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/microsoft.insights/eventtypes/management/values?api-version=2015-04-01&$filter=eventTimestamp%20ge%202019-05-28T07%3A38%3A39Z%20and%20correlationId%20eq%20%277f59404c-e270-4eb0-bfc3-4e6b46dc4cba%27
+ response:
+ body:
+ string: '{"value":[{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"270dac2e-30b2-4fae-8b9e-04a36855cb4c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/270dac2e-30b2-4fae-8b9e-04a36855cb4c/ticks/636982258730985819","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"ecb94b8f-cf8f-4e62-ba2b-a47c5f36dfa3","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:37:53.0985819Z","submissionTimestamp":"2019-07-08T23:38:24.1185742Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6063da91-9178-497f-87ea-2acff6f4a3ab","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6063da91-9178-497f-87ea-2acff6f4a3ab/ticks/636982258027435903","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"aaffc3ef-f7e6-470b-a3f9-22c0ce0d9c8d","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:42.7435903Z","submissionTimestamp":"2019-07-08T23:37:22.2442263Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2d624d7c-2855-4cde-9ecc-83196e1b8b28","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/2d624d7c-2855-4cde-9ecc-83196e1b8b28/ticks/636982257926384050","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"properties":{"statusCode":"Created","serviceRequestId":"d92c0b88-fdf9-4576-93c2-2b0d69163ac1","responseBody":"{\"properties\":{\"vmId\":\"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\"hardwareProfile\":{\"vmSize\":\"Standard_DS1_v2\"},\"storageProfile\":{\"imageReference\":{\"publisher\":\"MicrosoftWindowsServer\",\"offer\":\"WindowsServer\",\"sku\":\"2016-Datacenter\",\"version\":\"latest\"},\"osDisk\":{\"osType\":\"Windows\",\"name\":\"osdisk_f286ee5104\",\"createOption\":\"FromImage\",\"vhd\":{\"uri\":\"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"},\"caching\":\"ReadWrite\"},\"dataDisks\":[]},\"osProfile\":{\"computerName\":\"vm1\",\"adminUsername\":\"azureadmin\",\"windowsConfiguration\":{\"provisionVMAgent\":true,\"enableAutomaticUpdates\":true},\"secrets\":[],\"allowExtensionOperations\":true,\"requireGuestProvisionSignal\":true},\"networkProfile\":{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\"provisioningState\":\"Creating\"},\"type\":\"Microsoft.Compute/virtualMachines\",\"location\":\"westus2\",\"tags\":{},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\"name\":\"vm1\"}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:36:32.638405Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6e930694-de1a-4a0c-9906-833689960ae1","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/6e930694-de1a-4a0c-9906-833689960ae1/ticks/636982257925434285","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:32.5434285Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Compute/virtualMachines/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"322897e9-2532-417c-b77b-032ca64e8d9d","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"04aaaf09-b887-4f53-b526-c57de6bd20b5","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/events/322897e9-2532-417c-b77b-032ca64e8d9d/ticks/636982257915833786","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Compute","localizedValue":"Microsoft.Compute"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":{"value":"Microsoft.Compute/virtualMachines","localizedValue":"Microsoft.Compute/virtualMachines"},"operationId":"7082383f-7478-4f23-801d-a75bb05c0adf","operationName":{"value":"Microsoft.Compute/virtualMachines/write","localizedValue":"Create
+ or Update Virtual Machine"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:31.5833786Z","submissionTimestamp":"2019-07-08T23:37:46.1638866Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1e631b72-c210-484f-a051-0e6cbc6c8d53","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1e631b72-c210-484f-a051-0e6cbc6c8d53/ticks/636982257881031767","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"a56eb33a-c598-477a-aa44-201fc9817ca8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:36:28.1031767Z","submissionTimestamp":"2019-07-08T23:37:37.1478716Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"48dce91a-b58c-453d-8c45-72692b2c0741","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/48dce91a-b58c-453d-8c45-72692b2c0741/ticks/636982257522005695","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"e95397eb-1e9f-424a-b076-9d2814e792a8","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:52.2005695Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e8555558-eda5-4760-84f8-f6438563ad34","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/e8555558-eda5-4760-84f8-f6438563ad34/ticks/636982257515905748","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"83db6f69-21a6-4ac3-a24b-9f0d6b900fa6","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.5905748Z","submissionTimestamp":"2019-07-08T23:37:15.1401601Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"64ba6331-b986-4bcf-a788-43b20bb67c2c","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/64ba6331-b986-4bcf-a788-43b20bb67c2c/ticks/636982257514079587","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"c51dfd46-08cd-472d-84de-c51022d1fc14","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:51.4079587Z","submissionTimestamp":"2019-07-08T23:36:57.1424265Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"b46a618d-5770-4063-b77d-900e766dbc31","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/b46a618d-5770-4063-b77d-900e766dbc31/ticks/636982257500658199","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"statusCode":"Created","serviceRequestId":"2f51bc97-e4d4-496d-86d2-3b9da9eb8252","responseBody":"{\"name\":\"vm1VMNic\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Succeeded\",\"resourceGuid\":\"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\"etag\":\"W/\\\"a6b55b9d-684a-4e59-9a61-6dda5bdf0f2b\\\"\",\"type\":\"Microsoft.Network/networkInterfaces/ipConfigurations\",\"properties\":{\"provisioningState\":\"Succeeded\",\"privateIPAddress\":\"10.0.0.4\",\"privateIPAllocationMethod\":\"Dynamic\",\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"},\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"primary\":true}}],\"dnsSettings\":{\"dnsServers\":[],\"appliedDnsServers\":[]},\"enableIPForwarding\":false,\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}},\"type\":\"Microsoft.Network/networkInterfaces\"}"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:50.0658199Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkInterfaces/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"e3fde896-bd71-4127-b23b-2caca8219db5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"5390f2f4-b6bf-40d1-9e90-b9db61038f94","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/events/e3fde896-bd71-4127-b23b-2caca8219db5/ticks/636982257494707662","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":{"value":"Microsoft.Network/networkInterfaces","localizedValue":"Microsoft.Network/networkInterfaces"},"operationId":"28a0768e-517d-47ff-b1a9-713eb8cbb26f","operationName":{"value":"Microsoft.Network/networkInterfaces/write","localizedValue":"Create
+ or Update Network Interface"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"ipConfigurations\":[{\"name\":\"ipconfigvm1\",\"properties\":{\"privateIPAllocationMethod\":\"Dynamic\",\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"},\"publicIPAddress\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"}}}],\"networkSecurityGroup\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"}}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:49.4707662Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1cb68111-c1da-47af-83ce-7c67994d62ea","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/1cb68111-c1da-47af-83ce-7c67994d62ea/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","serviceRequestId":"e3f8139e-8e8b-4a4a-a7f3-5d29cbad4158"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Accepted","localizedValue":"Accepted
+ (HTTP Status Code: 202)"},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Debug","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"d97d3cf5-cfbf-4358-bf29-3ba35922c511","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/d97d3cf5-cfbf-4358-bf29-3ba35922c511/ticks/636982257465766169","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"67d68789-9458-40e9-9ede-3e155b4c7e34","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"statusCode":"Accepted","statusMessage":"\"Resource
+ provisioning is in progress.\""},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.5766169Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"67ee8f57-03a1-4091-a8be-e7aebb48cdd2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/67ee8f57-03a1-4091-a8be-e7aebb48cdd2/ticks/636982257461753513","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"statusCode":"Created","serviceRequestId":"467a66ce-b5a7-41a9-9ea2-4978ef0b203f","responseBody":"{\"name\":\"vm1VNET\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"type\":\"Microsoft.Network/virtualNetworks\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"e5c9be92-38de-40e4-88f1-60f8a8e7bbb8\",\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\"etag\":\"W/\\\"6e25ff8b-0a98-4436-bb3f-20d948cd2fc3\\\"\",\"properties\":{\"provisioningState\":\"Updating\",\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1753513Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"6b1a1a78-3a03-4b00-9afa-5a2b183d4274","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/6b1a1a78-3a03-4b00-9afa-5a2b183d4274/ticks/636982257461153256","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"statusCode":"Created","serviceRequestId":"bc74ea21-9794-4aba-9f0a-0aaf04276bdb","responseBody":"{\"name\":\"vm1PublicIP\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\"etag\":\"W/\\\"fa695f97-0cb9-4b76-9351-a2fc43d9df6b\\\"\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\"publicIPAddressVersion\":\"IPv4\",\"publicIPAllocationMethod\":\"Dynamic\",\"idleTimeoutInMinutes\":4,\"ipTags\":[]},\"type\":\"Microsoft.Network/publicIPAddresses\",\"sku\":{\"name\":\"Basic\",\"tier\":\"Regional\"}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:46.1153256Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"a19cb5a1-77f1-4424-8b8e-2e376b61399e","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/a19cb5a1-77f1-4424-8b8e-2e376b61399e/ticks/636982257460803228","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Authorization/policies/auditIfNotExists/action","localizedValue":"Microsoft.Authorization/policies/auditIfNotExists/action"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:46.0803228Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"04753eb7-34cd-4a34-a038-44a9198aa6f2","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/04753eb7-34cd-4a34-a038-44a9198aa6f2/ticks/636982257459552948","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"statusCode":"Created","serviceRequestId":"d9cbe5a0-368b-43f8-bb51-7331368a7bed","responseBody":"{\"name\":\"vm1NSG\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"location\":\"westus2\",\"tags\":{},\"properties\":{\"provisioningState\":\"Updating\",\"resourceGuid\":\"3ebcd9d1-974e-4cb0-9407-6f8f2db2f788\",\"securityRules\":[{\"name\":\"rdp\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/securityRules/rdp\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}],\"defaultSecurityRules\":[{\"name\":\"AllowVnetInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Inbound\"}},{\"name\":\"AllowAzureLoadBalancerInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ inbound traffic from azure load balancer\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"AzureLoadBalancer\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Inbound\"}},{\"name\":\"DenyAllInBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllInBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all inbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Inbound\"}},{\"name\":\"AllowVnetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowVnetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to all VMs in VNET\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"VirtualNetwork\",\"destinationAddressPrefix\":\"VirtualNetwork\",\"access\":\"Allow\",\"priority\":65000,\"direction\":\"Outbound\"}},{\"name\":\"AllowInternetOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/AllowInternetOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Allow
+ outbound traffic from all VMs to Internet\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"Internet\",\"access\":\"Allow\",\"priority\":65001,\"direction\":\"Outbound\"}},{\"name\":\"DenyAllOutBound\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/defaultSecurityRules/DenyAllOutBound\",\"etag\":\"W/\\\"0bbe9c71-b9ee-4c1e-89de-2d7ab09a5f73\\\"\",\"type\":\"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\"properties\":{\"provisioningState\":\"Updating\",\"description\":\"Deny
+ all outbound traffic\",\"protocol\":\"*\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"*\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Deny\",\"priority\":65500,\"direction\":\"Outbound\"}}]}}"},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:45.9552948Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"74664724-879e-4221-897e-c63433bd72db","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Policy","localizedValue":"Policy"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/74664724-879e-4221-897e-c63433bd72db/ticks/636982257451996927","level":"Warning","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Authorization/policies/audit/action","localizedValue":"Microsoft.Authorization/policies/audit/action"},"properties":{"isComplianceCheck":"False","resourceLocation":"westus2","ancestors":"ccf08c89-9532-4a4b-95fa-799336711e05,48fed3a1-0814-4847-88ce-b766155f2792,CnAIOrchestrationServicePublicCorpprod,72f988bf-86f1-41af-91ab-2d7cd011db47","policies":"[{\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9/\",\"policySetDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8/\",\"policyDefinitionReferenceId\":\"secureTransferToStorageAccountMonitoring\",\"policySetDefinitionName\":\"1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"policyDefinitionName\":\"404c3081-a854-4457-ae30-26a93ef643f9\",\"policyDefinitionEffect\":\"Audit\",\"policyAssignmentId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn/\",\"policyAssignmentName\":\"SecurityCenterBuiltIn\",\"policyAssignmentScope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"policyAssignmentSku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"policyAssignmentParameters\":{}}]"},"status":{"value":"Succeeded","localizedValue":"Succeeded"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.1996927Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/virtualNetworks/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"1810bcf2-5ffa-470b-8055-dcaa852c6a64","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"320d971e-cc7e-42e2-a093-522e6c983c2a","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/events/1810bcf2-5ffa-470b-8055-dcaa852c6a64/ticks/636982257450396834","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":{"value":"Microsoft.Network/virtualNetworks","localizedValue":"Microsoft.Network/virtualNetworks"},"operationId":"02032b25-f240-47b2-8519-ee85e41f60e0","operationName":{"value":"Microsoft.Network/virtualNetworks/write","localizedValue":"Create
+ or Update Virtual Network"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"vm1Subnet\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0396834Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/networkSecurityGroups/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"759b7dca-b3f9-4dea-8427-c9164f0f11c2","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"423427d9-1bc2-4271-abc8-7b1757e78123","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG/events/759b7dca-b3f9-4dea-8427-c9164f0f11c2/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":{"value":"Microsoft.Network/networkSecurityGroups","localizedValue":"Microsoft.Network/networkSecurityGroups"},"operationId":"a748e7ca-3b96-4973-a685-452ff347adf7","operationName":{"value":"Microsoft.Network/networkSecurityGroups/write","localizedValue":"Create
+ or Update Network Security Group"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"securityRules\":[{\"name\":\"rdp\",\"properties\":{\"protocol\":\"Tcp\",\"sourcePortRange\":\"*\",\"destinationPortRange\":\"3389\",\"sourceAddressPrefix\":\"*\",\"destinationAddressPrefix\":\"*\",\"access\":\"Allow\",\"priority\":1000,\"direction\":\"Inbound\"}}]}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Network/publicIPAddresses/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"90b2b86e-35bb-4e06-b35c-06b5fd3ba954","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"1540489c-601a-4d1d-a8b8-f7ee93754f21","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP/events/90b2b86e-35bb-4e06-b35c-06b5fd3ba954/ticks/636982257450346879","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Network","localizedValue":"Microsoft.Network"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":{"value":"Microsoft.Network/publicIPAddresses","localizedValue":"Microsoft.Network/publicIPAddresses"},"operationId":"0704581e-a7d4-4005-a3d4-3fa8901e5f31","operationName":{"value":"Microsoft.Network/publicIPAddresses/write","localizedValue":"Create
+ or Update Public Ip Address"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"publicIPAllocationMethod\":null}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0346879Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Storage/storageAccounts/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"2c583f95-775e-4682-85a1-a5b3349787f5","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"eaf0e5be-86d1-4ea3-bc3a-757514221a19","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954/events/2c583f95-775e-4682-85a1-a5b3349787f5/ticks/636982257450096884","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Storage","localizedValue":"Microsoft.Storage"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":{"value":"Microsoft.Storage/storageAccounts","localizedValue":"Microsoft.Storage/storageAccounts"},"operationId":"11b1a045-299d-4d80-9a8a-022ca41d57a8","operationName":{"value":"Microsoft.Storage/storageAccounts/write","localizedValue":"Create/Update
+ Storage Account"},"properties":{"requestbody":"{\"location\":\"westus2\",\"tags\":{},\"properties\":{\"accountType\":\"Premium_LRS\"}}"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:45.0096884Z","submissionTimestamp":"2019-07-08T23:36:33.1569268Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"62293c32-6c8f-4448-8f9e-3753e9cbc7b5","eventName":{"value":"EndRequest","localizedValue":"End
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/62293c32-6c8f-4448-8f9e-3753e9cbc7b5/ticks/636982257443067969","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"properties":{"statusCode":"Created","serviceRequestId":null},"status":{"value":"Accepted","localizedValue":"Accepted"},"subStatus":{"value":"Created","localizedValue":"Created
+ (HTTP Status Code: 201)"},"eventTimestamp":"2019-07-08T23:35:44.3067969Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},{"authorization":{"action":"Microsoft.Resources/deployments/write","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd"},"caller":"subae@microsoft.com","channels":"Operation","claims":{"aud":"https://management.core.windows.net/","iss":"https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/","iat":"1562628359","nbf":"1562628359","exp":"1562632259","_claim_names":"{\"groups\":\"src1\"}","_claim_sources":"{\"src1\":{\"endpoint\":\"https://graph.windows.net/00000000-0000-0000-0000-000000000000/users/22d22c47-31a9-4f0c-93ec-f42562eaa273/getMemberObjects\"}}","http://schemas.microsoft.com/claims/authnclassreference":"1","aio":"AUQAu/8MAAAAEM106fXCg6OgYlfZKDDdeWmpi8OsKOUgwoEeTObSZ1dGXwKCsYGMdAvAwKSBiV20vkogvvJXMvYVcNef6f49fA==","http://schemas.microsoft.com/claims/authnmethodsreferences":"rsa,mfa","appid":"04b07795-8ddb-461a-bbee-02f9e1bf7b46","appidacr":"0","http://schemas.microsoft.com/2012/01/devicecontext/claims/identifier":"5600d2e9-4362-4ad7-9292-311b677fe937","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname":"Bae","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname":"Sungwoo","ipaddr":"167.220.2.199","name":"Sungwoo
+ Bae","http://schemas.microsoft.com/identity/claims/objectidentifier":"22d22c47-31a9-4f0c-93ec-f42562eaa273","onprem_sid":"S-1-5-21-2127521184-1604012920-1887927527-32823873","puid":"10037FFEAD2258DC","http://schemas.microsoft.com/identity/claims/scope":"user_impersonation","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/nameidentifier":"yteeOa8CMM3tXMk-TQtXGOFV9cqNqRPLpAwMlukKcTo","http://schemas.microsoft.com/identity/claims/tenantid":"72f988bf-86f1-41af-91ab-2d7cd011db47","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name":"subae@microsoft.com","http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn":"subae@microsoft.com","uti":"H-DeDJtrdU29QHkUxKCCAA","ver":"1.0"},"correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","description":"","eventDataId":"bc1258a6-703f-4764-a068-c71a9693dd51","eventName":{"value":"BeginRequest","localizedValue":"Begin
+ request"},"category":{"value":"Administrative","localizedValue":"Administrative"},"httpRequest":{"clientRequestId":"194a374c-a1d9-11e9-938d-00190e19a770","clientIpAddress":"131.107.159.71","method":"PUT"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd/events/bc1258a6-703f-4764-a068-c71a9693dd51/ticks/636982257432514048","level":"Informational","resourceGroupName":"clitest.rg000001","resourceProviderName":{"value":"Microsoft.Resources","localizedValue":"Microsoft
+ Resources"},"resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","resourceType":{"value":"Microsoft.Resources/deployments","localizedValue":"Microsoft.Resources/deployments"},"operationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","operationName":{"value":"Microsoft.Resources/deployments/write","localizedValue":"Create
+ Deployment"},"status":{"value":"Started","localizedValue":"Started"},"subStatus":{"value":"","localizedValue":""},"eventTimestamp":"2019-07-08T23:35:43.2514048Z","submissionTimestamp":"2019-07-08T23:36:40.1328704Z","subscriptionId":"88fd8cb2-8248-499e-9a2d-4929a4b0133c","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '102858'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Mon, 08 Jul 2019 23:38:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding,Accept-Encoding
x-content-type-options:
- nosniff
status:
@@ -641,9 +2284,9 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586432144770452399?api-version=2018-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586389779420761191?api-version=2018-05-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -655,7 +2298,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:20 GMT
+ - Mon, 08 Jul 2019 23:38:45 GMT
expires:
- '-1'
pragma:
@@ -684,21 +2327,21 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2018-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_BzFqdL54m2t3HRsqE0AkVMyDrpMpxvDr","name":"vm_deploy_BzFqdL54m2t3HRsqE0AkVMyDrpMpxvDr","properties":{"templateHash":"6172856108253169612","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-05-20T22:50:00.3476481Z","duration":"PT3M11.9152566S","correlationId":"a424ef19-1783-483e-b716-72830a9b116c","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus2"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstorage5a44c93d26b515","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage5a44c93d26b515"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstorage5a44c93d26b515"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","name":"vm_deploy_5Dj0e3UWkAN07PTbUg7hyj3hKQgbfzyd","properties":{"templateHash":"13965056278452338682","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2019-07-08T23:38:37.8330509Z","duration":"PT2M54.4315262S","correlationId":"7f59404c-e270-4eb0-bfc3-4e6b46dc4cba","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus2"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus2"]},{"resourceType":"networkSecurityGroups","locations":["westus2"]},{"resourceType":"publicIPAddresses","locations":["westus2"]},{"resourceType":"networkInterfaces","locations":["westus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstoragef286ee5104e954"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/vhdstoragef286ee5104e954"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '4458'
+ - '4459'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:20 GMT
+ - Mon, 08 Jul 2019 23:38:45 GMT
expires:
- '-1'
pragma:
@@ -727,21 +2370,21 @@ interactions:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\":
- \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd\"\r\n
+ \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"azureadmin\",\r\n
@@ -754,16 +2397,16 @@ interactions:
\ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n
\ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not
Ready\",\r\n \"message\": \"VM status blob is found but not yet
- populated.\",\r\n \"time\": \"2019-05-20T22:50:22+00:00\"\r\n }\r\n
+ populated.\",\r\n \"time\": \"2019-07-08T23:38:46+00:00\"\r\n }\r\n
\ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\":
- \"osdisk_5a44c93d26\",\r\n \"statuses\": [\r\n {\r\n \"code\":
+ \"osdisk_f286ee5104\",\r\n \"statuses\": [\r\n {\r\n \"code\":
\"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n
\ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\":
- \"2019-05-20T22:47:11.5416572+00:00\"\r\n }\r\n ]\r\n
+ \"2019-07-08T23:36:32.4699049+00:00\"\r\n }\r\n ]\r\n
\ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2019-05-20T22:49:58.182995+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2019-07-08T23:38:37.4245123+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n
@@ -773,11 +2416,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2817'
+ - '2818'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:21 GMT
+ - Mon, 08 Jul 2019 23:38:46 GMT
expires:
- '-1'
pragma:
@@ -794,7 +2437,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3908,Microsoft.Compute/LowCostGet30Min;31729
+ - Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31750
status:
code: 200
message: OK
@@ -812,8 +2455,8 @@ interactions:
ParameterSetName:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/2.6.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
@@ -821,12 +2464,12 @@ interactions:
response:
body:
string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
- \ \"etag\": \"W/\\\"6f1c4416-b700-4b6e-99cc-6f1ae0b49d8d\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"a95784c5-b4e3-4000-944b-061fb8dee547\\\"\",\r\n \"location\":
\"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"687316cf-519a-4721-8096-7c26c3df75c5\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"ecc68fbc-05cb-458a-bba4-7e30a18ff752\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
- \ \"etag\": \"W/\\\"6f1c4416-b700-4b6e-99cc-6f1ae0b49d8d\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a95784c5-b4e3-4000-944b-061fb8dee547\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
@@ -835,8 +2478,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"dyvgwdmnob5eri1wmtqioa0yog.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-0D-3A-6D-F0-A1\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"sk5mtzo4hdsebchrmd2krz31xa.xx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-FD-38-D2\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -850,9 +2493,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:23 GMT
+ - Mon, 08 Jul 2019 23:38:45 GMT
etag:
- - W/"6f1c4416-b700-4b6e-99cc-6f1ae0b49d8d"
+ - W/"a95784c5-b4e3-4000-944b-061fb8dee547"
expires:
- '-1'
pragma:
@@ -885,8 +2528,8 @@ interactions:
ParameterSetName:
- -g -n --admin-username --image --admin-password --use-unmanaged-disk
User-Agent:
- - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/2.6.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ - python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 networkmanagementclient/3.0.0
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
@@ -894,10 +2537,10 @@ interactions:
response:
body:
string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
- \ \"etag\": \"W/\\\"2ff5354a-877b-4f3a-8758-85f9ef074629\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"096cf40e-fc6c-45d9-9115-28d2ab136c37\\\"\",\r\n \"location\":
\"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"42fac6b8-37d3-423a-8538-d13a3b817d6d\",\r\n
- \ \"ipAddress\": \"20.190.42.28\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"57ceb90b-c348-4d6e-a13f-aa53d52e80d9\",\r\n
+ \ \"ipAddress\": \"52.183.0.186\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
\ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
@@ -911,9 +2554,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:23 GMT
+ - Mon, 08 Jul 2019 23:38:46 GMT
etag:
- - W/"2ff5354a-877b-4f3a-8758-85f9ef074629"
+ - W/"096cf40e-fc6c-45d9-9115-28d2ab136c37"
expires:
- '-1'
pragma:
@@ -947,7 +2590,7 @@ interactions:
- -g
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
@@ -955,14 +2598,14 @@ interactions:
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\":
- \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n \"hardwareProfile\":
+ \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n \"hardwareProfile\":
{\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
{\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n
\ \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n
\ \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n
- \ \"uri\": \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd\"\r\n
+ \ \"uri\": \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\":
@@ -983,7 +2626,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:25 GMT
+ - Mon, 08 Jul 2019 23:38:46 GMT
expires:
- '-1'
pragma:
@@ -1000,7 +2643,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;134,Microsoft.Compute/HighCostGet30Min;684
+ - Microsoft.Compute/HighCostGet3Min;135,Microsoft.Compute/HighCostGet30Min;672
status:
code: 200
message: OK
@@ -1019,21 +2662,21 @@ interactions:
- -g -n --repair-username --repair-password
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\":
- \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd\"\r\n
+ \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"azureadmin\",\r\n
@@ -1052,7 +2695,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:24 GMT
+ - Mon, 08 Jul 2019 23:38:47 GMT
expires:
- '-1'
pragma:
@@ -1069,7 +2712,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3904,Microsoft.Compute/LowCostGet30Min;31725
+ - Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31748
status:
code: 200
message: OK
@@ -1088,21 +2731,21 @@ interactions:
- -g -n --repair-username --repair-password
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\":
- \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd\"\r\n
+ \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"azureadmin\",\r\n
@@ -1121,7 +2764,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:50:25 GMT
+ - Mon, 08 Jul 2019 23:38:47 GMT
expires:
- '-1'
pragma:
@@ -1138,7 +2781,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3902,Microsoft.Compute/LowCostGet30Min;31723
+ - Microsoft.Compute/LowCostGet3Min;3973,Microsoft.Compute/LowCostGet30Min;31747
status:
code: 200
message: OK
@@ -1157,26 +2800,26 @@ interactions:
- -g
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Compute/virtualMachines?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Compute/virtualMachines?api-version=2019-03-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\":
- \"24a22d19-87a3-407d-8ce5-5c57f04893da\",\r\n \"hardwareProfile\":
+ \"d65949d1-69c9-4a85-af27-a9b265c8e956\",\r\n \"hardwareProfile\":
{\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
{\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n
\ \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n
- \ \"version\": \"2016.127.20190416\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_2b7b85f19d\",\r\n
+ \ \"version\": \"2016.127.20190603\"\r\n },\r\n \"osDisk\":
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f9eef58f2f\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n
- \ \"uri\": \"https://vhdstorage2b7b85f19d04a6.blob.core.windows.net/vhds/osdisk_2b7b85f19d.vhd\"\r\n
+ \ \"uri\": \"https://vhdstoragef9eef58f2fcdb7.blob.core.windows.net/vhds/osdisk_f9eef58f2f.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\":
- 0,\r\n \"name\": \"vm1-DiskCopy-20190520225025.vhd\",\r\n \"createOption\":
- \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/vm1-DiskCopy-20190520225025.vhd\"\r\n
+ 0,\r\n \"name\": \"vm1-DiskCopy-20190708233847.vhd\",\r\n \"createOption\":
+ \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/vm1-DiskCopy-20190708233847.vhd\"\r\n
\ },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\":
127,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n
\ },\r\n \"osProfile\": {\r\n \"computerName\": \"repair-vm1\",\r\n
@@ -1184,11 +2827,11 @@ interactions:
{\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\":
true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Network/networkInterfaces/repair-vm1VMNic\"}]},\r\n
+ \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Network/networkInterfaces/repair-vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\":
\"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus2\",\r\n
\ \"tags\": {\r\n \"repair_source\": \"clitest.rg000001/vm1\"\r\n
- \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Compute/virtualMachines/repair-vm1\",\r\n
+ \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Compute/virtualMachines/repair-vm1\",\r\n
\ \"name\": \"repair-vm1\"\r\n }\r\n ]\r\n}"
headers:
cache-control:
@@ -1198,7 +2841,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:55:01 GMT
+ - Mon, 08 Jul 2019 23:43:10 GMT
expires:
- '-1'
pragma:
@@ -1215,7 +2858,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;137,Microsoft.Compute/HighCostGet30Min;680
+ - Microsoft.Compute/HighCostGet3Min;135,Microsoft.Compute/HighCostGet30Min;671
status:
code: 200
message: OK
@@ -1234,21 +2877,21 @@ interactions:
- -g -n --yes
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\":
- \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd\"\r\n
+ \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"azureadmin\",\r\n
@@ -1267,7 +2910,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:55:02 GMT
+ - Mon, 08 Jul 2019 23:43:11 GMT
expires:
- '-1'
pragma:
@@ -1284,7 +2927,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3960,Microsoft.Compute/LowCostGet30Min;31643
+ - Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31730
status:
code: 200
message: OK
@@ -1303,35 +2946,35 @@ interactions:
- -g -n --yes
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Compute/virtualMachines/repair-vm1?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Compute/virtualMachines/repair-vm1?api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"24a22d19-87a3-407d-8ce5-5c57f04893da\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"d65949d1-69c9-4a85-af27-a9b265c8e956\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
- \"2016-Datacenter\",\r\n \"version\": \"2016.127.20190416\"\r\n },\r\n
+ \"2016-Datacenter\",\r\n \"version\": \"2016.127.20190603\"\r\n },\r\n
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\":
- \"osdisk_2b7b85f19d\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\":
- {\r\n \"uri\": \"https://vhdstorage2b7b85f19d04a6.blob.core.windows.net/vhds/osdisk_2b7b85f19d.vhd\"\r\n
+ \"osdisk_f9eef58f2f\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\":
+ {\r\n \"uri\": \"https://vhdstoragef9eef58f2fcdb7.blob.core.windows.net/vhds/osdisk_f9eef58f2f.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\":
- 0,\r\n \"name\": \"vm1-DiskCopy-20190520225025.vhd\",\r\n \"createOption\":
- \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/vm1-DiskCopy-20190520225025.vhd\"\r\n
+ 0,\r\n \"name\": \"vm1-DiskCopy-20190708233847.vhd\",\r\n \"createOption\":
+ \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/vm1-DiskCopy-20190708233847.vhd\"\r\n
\ },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\":
127,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n
\ \"osProfile\": {\r\n \"computerName\": \"repair-vm1\",\r\n \"adminUsername\":
\"azureadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\":
true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\":
[],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Network/networkInterfaces/repair-vm1VMNic\"}]},\r\n
+ true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Network/networkInterfaces/repair-vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n
\ \"location\": \"westus2\",\r\n \"tags\": {\r\n \"repair_source\": \"clitest.rg000001/vm1\"\r\n
- \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Compute/virtualMachines/repair-vm1\",\r\n
+ \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Compute/virtualMachines/repair-vm1\",\r\n
\ \"name\": \"repair-vm1\"\r\n}"
headers:
cache-control:
@@ -1341,7 +2984,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:55:04 GMT
+ - Mon, 08 Jul 2019 23:43:13 GMT
expires:
- '-1'
pragma:
@@ -1358,7 +3001,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3959,Microsoft.Compute/LowCostGet30Min;31642
+ - Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31729
status:
code: 200
message: OK
@@ -1377,21 +3020,21 @@ interactions:
- -g -n --yes
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\":
- \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/osdisk_5a44c93d26.vhd\"\r\n
+ \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/osdisk_f286ee5104.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"azureadmin\",\r\n
@@ -1410,7 +3053,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:55:04 GMT
+ - Mon, 08 Jul 2019 23:43:13 GMT
expires:
- '-1'
pragma:
@@ -1427,7 +3070,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3958,Microsoft.Compute/LowCostGet30Min;31641
+ - Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31728
status:
code: 200
message: OK
@@ -1446,35 +3089,35 @@ interactions:
- -g -n --yes
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Compute/virtualMachines/repair-vm1?api-version=2019-03-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Compute/virtualMachines/repair-vm1?api-version=2019-03-01
response:
body:
- string: "{\r\n \"properties\": {\r\n \"vmId\": \"24a22d19-87a3-407d-8ce5-5c57f04893da\",\r\n
+ string: "{\r\n \"properties\": {\r\n \"vmId\": \"d65949d1-69c9-4a85-af27-a9b265c8e956\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
- \"2016-Datacenter\",\r\n \"version\": \"2016.127.20190416\"\r\n },\r\n
+ \"2016-Datacenter\",\r\n \"version\": \"2016.127.20190603\"\r\n },\r\n
\ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\":
- \"osdisk_2b7b85f19d\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\":
- {\r\n \"uri\": \"https://vhdstorage2b7b85f19d04a6.blob.core.windows.net/vhds/osdisk_2b7b85f19d.vhd\"\r\n
+ \"osdisk_f9eef58f2f\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\":
+ {\r\n \"uri\": \"https://vhdstoragef9eef58f2fcdb7.blob.core.windows.net/vhds/osdisk_f9eef58f2f.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\":
- 0,\r\n \"name\": \"vm1-DiskCopy-20190520225025.vhd\",\r\n \"createOption\":
- \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/vm1-DiskCopy-20190520225025.vhd\"\r\n
+ 0,\r\n \"name\": \"vm1-DiskCopy-20190708233847.vhd\",\r\n \"createOption\":
+ \"Attach\",\r\n \"vhd\": {\r\n \"uri\": \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/vm1-DiskCopy-20190708233847.vhd\"\r\n
\ },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\":
127,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n
\ \"osProfile\": {\r\n \"computerName\": \"repair-vm1\",\r\n \"adminUsername\":
\"azureadmin\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\":
true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\":
[],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Network/networkInterfaces/repair-vm1VMNic\"}]},\r\n
+ true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Network/networkInterfaces/repair-vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n
\ \"location\": \"westus2\",\r\n \"tags\": {\r\n \"repair_source\": \"clitest.rg000001/vm1\"\r\n
- \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190520225025/providers/Microsoft.Compute/virtualMachines/repair-vm1\",\r\n
+ \ },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/repair-vm1-20190708233847/providers/Microsoft.Compute/virtualMachines/repair-vm1\",\r\n
\ \"name\": \"repair-vm1\"\r\n}"
headers:
cache-control:
@@ -1484,7 +3127,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:55:04 GMT
+ - Mon, 08 Jul 2019 23:43:14 GMT
expires:
- '-1'
pragma:
@@ -1501,7 +3144,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3957,Microsoft.Compute/LowCostGet30Min;31640
+ - Microsoft.Compute/LowCostGet3Min;3963,Microsoft.Compute/LowCostGet30Min;31727
status:
code: 200
message: OK
@@ -1520,7 +3163,7 @@ interactions:
- -g
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 computemanagementclient/5.0.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: GET
@@ -1528,14 +3171,14 @@ interactions:
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\":
- \"2bdb2a28-6b6f-43fa-85c3-2693d4a71aab\",\r\n \"hardwareProfile\":
+ \"98710a37-65b4-4dbb-8667-cb5f0e275eae\",\r\n \"hardwareProfile\":
{\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
{\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n
\ \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n
\ \"version\": \"latest\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_5a44c93d26\",\r\n
+ {\r\n \"osType\": \"Windows\",\r\n \"name\": \"osdisk_f286ee5104\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n
- \ \"uri\": \"https://vhdstorage5a44c93d26b515.blob.core.windows.net/vhds/vm1-DiskCopy-20190520225025.vhd\"\r\n
+ \ \"uri\": \"https://vhdstoragef286ee5104e954.blob.core.windows.net/vhds/vm1-DiskCopy-20190708233847.vhd\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
{\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\":
@@ -1556,7 +3199,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 20 May 2019 22:56:45 GMT
+ - Mon, 08 Jul 2019 23:44:54 GMT
expires:
- '-1'
pragma:
@@ -1573,7 +3216,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostGet3Min;135,Microsoft.Compute/HighCostGet30Min;676
+ - Microsoft.Compute/HighCostGet3Min;135,Microsoft.Compute/HighCostGet30Min;669
status:
code: 200
message: OK
@@ -1594,7 +3237,7 @@ interactions:
- --name --yes --no-wait
User-Agent:
- python/3.7.2 (Windows-10-10.0.17763-SP0) msrest/0.6.6 msrest_azure/0.6.0 resourcemanagementclient/2.1.0
- Azure-SDK-For-Python AZURECLI/2.0.64
+ Azure-SDK-For-Python AZURECLI/2.0.68
accept-language:
- en-US
method: DELETE
@@ -1608,11 +3251,11 @@ interactions:
content-length:
- '0'
date:
- - Mon, 20 May 2019 22:56:46 GMT
+ - Mon, 08 Jul 2019 23:44:57 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdEWU5aNUxOTkVHWFlFWEpSUEdaR0Q0R1dBSlhTTzNFS09YQXxEQjFBNEUyMzI2QTIyMjEwLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2018-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DTElURVNUOjJFUkdLUko0VjZBNU5WMjU3VURaUjUzRVdaSzNDUUVKN0ROQlBITHw5QzE3MzQ3OTM0NURFRkEyLVdFU1RVUzIiLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2018-05-01
pragma:
- no-cache
strict-transport-security:
diff --git a/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py b/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py
index 995ee6eaf3..6f589c761e 100644
--- a/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py
+++ b/src/vm-repair/azext_vm_repair/tests/latest/test_repair_commands.py
@@ -87,7 +87,7 @@ class LinuxManagedDiskCreateRestoreTest(ScenarioTest):
assert len(vms) == 1
# Test create
- result = self.cmd('vm repair create -g {rg} -n {vm} --repair-username azureadmin --repair-password !Passw0rd2018').get_output_in_json()
+ result = self.cmd('vm repair create -g {rg} -n {vm} --repair-password !Passw0rd2018').get_output_in_json()
# Check repair VM
repair_vms = self.cmd('vm list -g {}'.format(result['repairResouceGroup'])).get_output_in_json()
@@ -120,7 +120,7 @@ class LinuxUnmanagedDiskCreateRestoreTest(ScenarioTest):
assert len(vms) == 1
# Test create
- result = self.cmd('vm repair create -g {rg} -n {vm} --repair-password !Passw0rd2018 --repair-username azureadmin').get_output_in_json()
+ result = self.cmd('vm repair create -g {rg} -n {vm} --repair-password !Passw0rd2018').get_output_in_json()
# Check repair VM
repair_vms = self.cmd('vm list -g {}'.format(result['repairResouceGroup'])).get_output_in_json()
diff --git a/src/vm-repair/setup.py b/src/vm-repair/setup.py
index e6e77540c8..53ca6533fa 100644
--- a/src/vm-repair/setup.py
+++ b/src/vm-repair/setup.py
@@ -8,7 +8,7 @@
from codecs import open
from setuptools import setup, find_packages
-VERSION = "0.1.1"
+VERSION = "0.1.2"
CLASSIFIERS = [
'Development Status :: 4 - Beta',